Re: SQL( "if ...exists...),how to do it in the PostgreSQL?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: Eric <e-lz(at)263(dot)net>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: SQL( "if ...exists...),how to do it in the PostgreSQL?
Date: 2001-06-06 15:58:49
Message-ID: 24541.991843129@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

>> if not exists(select id from test) insert into test(id) values (280);

> Write a function in PL/pgSQL.

That particular case could be handled like so:

insert into test(id) select 280 where not exists(select id from test);

The select produces either zero or one row depending on whether its
WHERE is true. Voila, problem solved. It's even nearly standard ;-)
although in something like Oracle you'd have to add "from dual", I
think.

regards, tom lane

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message rai lalit 2001-06-06 16:03:59 Delete oid causing problems
Previous Message Martín Marqués 2001-06-06 15:57:13 Re: [HACKERS] something smells bad