table constraint on two columns - Mailing list pgsql-sql

From ldrlj1
Subject table constraint on two columns
Date
Msg-id 1374501921767-5764645.post@n5.nabble.com
Whole thread Raw
Responses Re: table constraint on two columns
List pgsql-sql
Postgres 9.2.4.

I have two columns, approved and comments. Approved is a boolean with no
default value and comments is a character varying (255) and nullable.

I am trying to create a constraint that will not allow a row to be entered
if approved is set to false and comments is null.

This does not work. yada, yada, yada... add constraint "chk_comments' check
(approved = false and comments is not null). The constraint is successfully
added, but does not work as I expected.



--
View this message in context: http://postgresql.1045698.n5.nabble.com/table-constraint-on-two-columns-tp5764645.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.



pgsql-sql by date:

Previous
From: Mag Gam
Date:
Subject: Mag Gam
Next
From: Vik Fearing
Date:
Subject: Re: table constraint on two columns