风清月

sqlserver约束

电脑版发表于:2019/2/24 15:35



添加表后操作约束

 --删除约束
 alter table aj_test drop constraint CK__aj_test__userAge__5EBF139D

 --为表aj_test 添加默认约束
 alter table aj_test add constraint cons_defualt default('女') for userAge

 --为表aj_test 添加检查约束
 alter table aj_test add constraint con_big check(userAge>15) 

 --为表 添加唯一约束
 alter table aj_test add constraint ck_unique  unique(userPhone)


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢