动手操作1:创建kc表和表约束(续)
create database xscjgo --表示一个批的结束。go 只能独自占用一行use xscj --从默认的master数据库切换到xscj库create table kc ( 序号 int identity, 课程号 char (3) not null primary key , 课程名 varchar (20) not null , 授课教师 varchar (20) , 开课学期 tinyint not null default 1 check ( 开课学期>=0 and 开课学期<=6), 学时 tinyint not null , 学分 tinyint )
动手操作3:创建xsqk表和表约束(续)
use xscjcreate table xsqk ( 序号 int identity, 学号 char (10) not null, 姓名 varchar (10) not null, 性别 bit not null default 1, 出生日期 smalldatetime not null, 专业名 varchar (20) not null, 所在系 varchar (20) not null, 联系电话 char (11), 总学分 tinyint , 备注 varchar (50) constraint pk_xsqk_xh primary key (学号), constraint ck_xsqk_zxf check(总学分>=0 and 总学分<=200) )