数据库-命令创建学生表、课程表、选课表并进行增删查改指令
创建学生表Student:create table Student( Sno char(10)primary key, //列级完整性约束条件,Sno是主码 Sname char(10) unique, //Sno取唯一值 Ssex char(2) check (Ssex in ('男','女')), //性别 Sage smallint check(Sage ...
原创
2018-04-25 19:47:02 ·
34616 阅读 ·
0 评论