Re: CHECK() Constraint on Column Using Lookup Table - Mailing list pgsql-general

From Richard Broersma Jr
Subject Re: CHECK() Constraint on Column Using Lookup Table
Date
Msg-id 507395.88992.qm@web31812.mail.mud.yahoo.com
Whole thread Raw
In response to CHECK() Constraint on Column Using Lookup Table  (Rich Shepard <rshepard@appl-ecosys.com>)
List pgsql-general
--- Rich Shepard <rshepard@appl-ecosys.com> wrote:

>    I've seen the syntax for using a lookup table in a CHECK() constraint, but
> I cannot find a reference to it. It's not in Section 5.3.1 of the 8.2 docs.
>
>    Specifically, I want to reference a table of ISO 2-letter codes for US
> states and Canadian provinces/territories in a table with name and address
> columns.

Using sub-queries in a table DDL is legal per SQL92, but Postgresql doesn't support this syntax.
However, I don't see what you would need it since the "REFERENCES" predicate should work just fine
for you.

You can scroll down to the passages that discuss the check constraint from the following page:
http://www.postgresql.org/docs/8.2/interactive/sql-createtable.html

Regards,
Richard Broersma Jr.

pgsql-general by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: CHECK() Constraint on Column Using Lookup Table
Next
From: "A. Kretschmer"
Date:
Subject: Re: CHECK() Constraint on Column Using Lookup Table