From: | Vik Fearing <vik(at)2ndquadrant(dot)fr> |
---|---|
To: | Andreas Kretschmer <akretschmer(at)spamfence(dot)net>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: unique constraint definition within create table |
Date: | 2015-12-08 06:16:53 |
Message-ID: | 566675D5.7060401@2ndquadrant.fr |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On 12/02/2015 07:36 AM, Andreas Kretschmer wrote:
> Hi @ll,
>
> i'm trying to create a table with 2 int-columns and a constraint that a
> pair of (x,y) cannot be as (y,x) inserted:
>
> test=# create table foo(u1 int,u2 int, unique (least(u1,u2),greatest(u1,u2)));
> ERROR: syntax error at or near "("
> LINE 1: create table foo(u1 int,u2 int, unique (least(u1,u2),greates...
>
>
> I know, i can solve that in this way:
>
> test=*# create table foo(u1 int,u2 int);
> CREATE TABLE
> test=*# create unique index idx_foo on foo(least(u1,u2),greatest(u1,u2));
> CREATE INDEX
>
>
> But is there a way to define the unique constraint within the create table - command?
You can use exclusion constraints for this.
CREATE TABLE foo (
u1 integer,
u2 integer,
EXCLUDE USING btree (
least(u1, u2) WITH =,
greatest(u1, u2) WITH =)
);
--
Vik Fearing +33 6 46 75 15 36
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support
From | Date | Subject | |
---|---|---|---|
Next Message | test | 2015-12-08 08:39:52 | 来自test的邮件 |
Previous Message | Sribeiro | 2015-12-03 22:01:35 | Re: ERROR while creating new user - could not open relation mapping file global/pg_filenode.map |