JC_ID ASC );
(3)Table 学生
/*==============================================================*/ /* Table: Stu_Info */
/*==============================================================*/ create table Stu_Info (
S_ID numeric(4) not null, BJ_ID numeric(4) null, ZW_ID numeric(4) null, S_Name char(20) null, S_Sex smallint null, S_BanJi numeric(4) null, S_MingZu char(20) null, S_ChuSheng date null, S_HuKo char(8) null, S_JiGuan char(20) null, S_ZhengZhi char(10) null, S_DianHua char(20) null, S_ShengFen char(20) null, S_JiaZhi char(50) null, S_YouBian char(10) null, S_QQ char(20) null, S_JiaFu_N char(20) null, S_JiaFu_T char(20) null, S_JiaMu_N char(20) null, S_JiaMu_T char(20) null, S_QingShi char(20) null, RZ_Date char(10) null, RZ_DaoQi char(10) null, constraint PK_STU_INFO primary key (S_ID) );
/*==============================================================*/ /* Index: 学生_PK */ /*==============================================================*/ create unique index 学生_PK on Stu_Info ( S_ID ASC );
/*==============================================================*/ /* Index: RenZhi_FK */