1
2
3
|
alter
table
S
alter
column
SN
CHAR
(8)
not
NULL
--设置SN为非空(但此处没有命名约束的名称,如何删除?)
|
1
2
3
|
alter
table
S
alter
column
SN
CHAR
(8)
NULL
--设置SN为允许空值(猜测删除了非空的约束,但如何对应那条约束名称?)
|
1
2
3
|
alter
table
S
add
constraint
SN_Cons
check
( SN
is
not
null
)
--创建自行命名的约束(这里一开始遗漏了check和is,报错了)
|
1
2
|
alter
table
s
drop
constraint
SN_Cons
--删除指定名称的约束
|
本文转自 angry_frog 51CTO博客,原文链接:http://blog.51cto.com/l0vesql/1765494