我正在尝试对现有列进行检查约束.
有没有办法从Postgresql实现这一目标?
解决方法
使用alter table添加新约束:
alter table foo add constraint check_positive check (the_column > 0);
手册中有更多细节和示例:
http://www.postgresql.org/docs/current/static/sql-altertable.html#AEN70043
编辑
通过使用IN运算符以相同的方式检查特定值:
alter table foo add constraint check_positive check (some_code in ('A','B'));