

--2、学生信息
create table student
(
student_num int Primary key,--学号
student_name char(50) not null,--姓名
student_pass varchar(32) not null, --密码
student_sex char(2) not null,--性别 1女 0男
student_grade char(10) not null,--年级
Specialized_id int,--专业,与Specialized表相对应
student_money float not null,--余额
student_lock char(2) not null,--锁定 0正常,1锁定
student_Note ntext --备注
)
转载于:https://www.cnblogs.com/hzuIT/articles/737207.html