解决方法
您可以在列上使用检查约束. IIRC的语法如下:
create table foo ( [...],Foobar int not null check (Foobar > 0) [...] )
正如下面的海报所说(感谢Constantin),你应该在表定义之外创建一个检查约束,并给它一个有意义的名称,这样很明显它适用于哪一列.
alter table foo add constraint Foobar_NonNegative check (Foobar > 0)
您可以从sys.check_constraints中的系统数据字典中获取检查约束的文本:
select name,description from sys.check_constraints where name = 'Foobar_NonNegative'