比如表名叫test,要给id列施加20-50的约束
create table test
(id int check (id between 20 and 50))
如果test表已存在,但是之前没对id列加约束
alter table test add check (id between 20 and 50)
alter table 表名 add constraint 约束名 check(列名>20 and 列名<50)
create table test
(id int check (id between 20 and 50))