分类

链接

2011 年 12 月
 1234
567891011
12131415161718
19202122232425
262728293031  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > SQL Server > 正文
共享办公室出租
使用SQL语句添加和删除约束
SQL Server 暂无评论 阅读(2,364)

  1. --主键约束(Primary Key constraint):要求主键列的数据唯一,并且不允许为空。
  2. --唯一约束(Unique Constraint):要求该列唯一,允许为空,但只能出现一个空值。
  3. --检查约束(Check Constraint):某列取值范围限制、格式限制等,如有关年龄的约束。
  4. --默认约束(Default Constraint):某列的默认值,如我们的男性同学较多,性别默认为男。
  5. --外键约束(Foreign Key):用于在两表之间建立关系需要制定引用主表的哪一列。
  6. 语法如下
  7. alter table 表名
  8. add constraint 约束名 约束类型 具体的约束说明
  9. 示例:
  10. --添加主键约束
  11. alter table stuInfo
  12. add constraint PK_stuNo primary key(stuNo)
  13. --添加唯一键约束
  14. alter table stuInfo
  15. add constraint UQ_stuID unique(stuID)
  16. --添加默认约束
  17. alter table stuInfo
  18. add constraint DF_stuAddress default('地址不详') for stuAddress
  19. --添加检查约束
  20. alter table stuInfo
  21. add constraint CK_stuAge check(stuAge between 15 and 40)
  22. --添加外键约束
  23. alter table stuInfo
  24. add constraint FK_stuNo foreign key(stuNo) references stuInfo(stuNo)
  25. 删除约束
  26. alter table 表名 drop constraint 约束名

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:使用SQL语句添加和删除约束 | Bruce's Blog

发表评论

留言无头像?