SQL实验报告
例1:定义院系表,其中编号为主关键字,名称应该惟一、而且不允许为空值。代码:--E1create table Department(编号char(8) primary key, 名称char(40)
SQL实验报告