1
CREATE TABLE my_table
(
fk INTEGER,
field_1 INTEGER,
field_2 INTEGER,
field_3 INTEGER
)
VALID:
fk | field_1 | field_2 | field_3
----------+---------------+---------------+---------------
1 | 1 | null | null
1 | null | 1 | null
1 | null | null | 1
可以創建檢查約束,它只允許1個字段爲3,對於1個字符可以不爲null?PostgreSQL檢查約束
是的,但是這可能不是最好的主意。 – 2012-04-05 11:03:33