使⽤SQL语句创建和删除约束
约束的⽬的就是确保表中的数据的完整性。
常⽤的约束类型如下:
主键约束:(Primary Key constraint)      要求主键列唯⼀,并且不允许为空
唯⼀约束:(Unique Constraint)              要求该列唯⼀,允许为空,但只能出现⼀个空值
检查约束:(Check Constraint)                某列取值范围限制、格式限制等。如有关年龄的限制
默认约束:(Default Constraint)              某列的默认值,如我们的男性学员⽐较多,性别默认为男
外键约束:(Foreign Key Constraint)      ⽤于在两表之间建⽴关系,需要指定引⽤主表的哪⼀列
⼀、添加约束
在创建表时,我们可以在字段后添加各种约束,但⼀般不这样混⽤,推荐将添加约束和建表的语句分开编写。添加约束的语法如下:
sql约束条件大于0Code:
1. Alter Table 表名
2. Add Constraint  约束名约束类型具体的约束类型
上述语法标识修改某个表,添加某个约束,其中约束名的命名规则推荐采⽤"约束类型_约束字段"这样的形式。Code:
1. ---添加主键约束
2. Alter Table stuInfo
3. Add Constraint  PK_stuNO primary Key(stuNo)
4. ---添加唯⼀约束
5. Alter Table stuInfo
6. Add Constraint UQ_stuID unique(stuID)
7. ---添加默认约束
8. Alter Table stuInfo
9. Add Constraint DF_stuAddress default('地址不详') for stuAddress
10. ---添加检查约束
11. Alter Table stuInfo
12. Add Constraint CK_stuAge check(stuAge between 15 and 40)
13. ---添加外键约束
14. Alter Table stuMarks
15. Add Constraint FK_stuNo foreign key(stuNo) references stuInfo(stuNo)
⼆、删除约束
如果错误的添加了约束,则可以删除约束
删除约束的语法如下:
Code:
1. Alter Table 表名
2. Drop Constraint  约束名
附加:在创建表的时候同时添加约束的写法:
Code:
1. use stuDB
2. go
3. if exists(select * from Sysobjects where name = 'stuInfo')
4. drop table stuInfo
5. go
6. create table stuInfo
7. (
8.      stuName varchar(20) not null primary key(stuName)
9. ,stuID int not null unique(stuID)
10. ,stuAddress varchar(20) not null default('地址不详')
11. ,stuAge int not null check(stuAge between 15 and 40)
12. )
原⽂链接:blog.csdn/hamber_bao/article/details/6504905

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。