Eric writes:
> I can realize this function in the SYBase,but How can i do it in the PostgreSQL?
>
> /****SQL***/
> if not exists(select id from test) insert into test(id) values (280);
> /*********/
I don't know if this is SQL92, but
insert into test(id) select 280 where not exists(select id from test);
pgsql-hackers by date
| Next: | From: Robert Forsman | Date: 2001-06-06 22:45:34 |
| Subject: Re: Daily Digest V1 #1428 |
| Previous: | From: Alex Pilosov | Date: 2001-06-06 22:14:54 |
| Subject: Re: [HACKERS] something smells bad |