sqlserver 查询范围外的交集号
发布网友
发布时间:2022-04-26 17:38
我来回答
共1个回答
热心网友
时间:2023-08-13 08:50
--整个约束就可以了
--创建表时创建约束
create table t1(col1 int not null check(col1 >=50 and col1 <= 90
and col1 >=201 and col1 <= 299))
--为已知表添加约束
alter table t1
add constraint CK_cardID check (
col1 >=50 and col1 <= 90
and col1 >=201 and col1 <= 299
)
--不明白可以随时问我 希望采纳