sql 约束

SQL Server中的约束(六种约束):
https://blog.csdn.net/qq_43551373/article/details/87865739

SQL_Server 约束大全:
https://xfzcql21.blog.csdn.net/article/details/88872190?utm_medium=distribute.pc_relevant.none-task-blog-searchFromBaidu-1.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-searchFromBaidu-1.control

SQL_Server 检查约束:
https://blog.csdn.net/gengkui9897/article/details/89440490;

检查约束的几种创建方式(详细看上面的链接):

限定输入:
1、

use dbmyFirstDatabase
create table t_test
(
ID int identity(1,1) primary key,
name nvarchar(10) not null,
sex char(2) check(sex='男' or sex='女') not null
)

2、

use dbmyFirstDatabase
create table test
(
ID int identity(1,1) primary key,
name nvarchar(10) not null,
sex char(2) 
)

--添加约束
alter table test
add constraint CK_test_sex check(sex='男' or sex='女')

3、(效果和2相同)

use dbmyFirstDatabase
alter table test
add constraint CK_test_sex check(sex in('男','女'))

范围限定:
1、

use dbmyFirstDatabase
create table test
(
ID int identity(1,1) primary key,
name nvarchar(10) not null,
sex char(2) ,
age int check(age>=0 and age <=100) 
)

2、

use dbmyFirstDatabase 
create table test 
( 
ID int identity(1,1) primary key, 
name nvarchar(10) not null, 
sex char(2) ,
 age int 
) 

--添加约束
alter table test
add constraint CK_test_age check(age>=0 and age <=100) 

3、(效果和2相同)

use dbmyFirstDatabase
alter table test
add constraint CK_test_age check (age between 0 and 100)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值