SQL建表时如何规定CHAR型数据的取值范围

2025-01-05 06:32:10
推荐回答(2个)
回答1:

在SQL Server2005中是增加约束
create table test
(
type char(1)
constraint ck1 check( type='A' or type='B' or type='C' or type='D')
);

回答2:

可以加规则,具体怎么加忘了。往这方面考虑