alter table S
alter column
 SN CHAR(8)   not NULL --设置SN为非空(但此处没有命名约束的名称,如何删除?)
alter table S
alter column
 SN CHAR(8)    NULL --设置SN为允许空值(猜测删除了非空的约束,但如何对应那条约束名称?)
alter table S
add 
constraint SN_Cons check( SN is not null)--创建自行命名的约束(这里一开始遗漏了check和is,报错了)
alter table s
drop constraint SN_Cons--删除指定名称的约束