建表时直接创建约束
create table 表名(字段名 int check (字段名 in (0,1,2)))
表已存在后创建
alter table 表名 add constraint 约束名 check(字段名 in (0,1,2))