PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

SELECT ou INSERT une ligne en une seule commande

Avez-vous essayé de l'unir ?

Modifier - cela nécessite Postgres 9.1 :

create table mytable (id serial primary key, other_key varchar not null unique);

WITH new_row AS (
INSERT INTO mytable (other_key)
SELECT 'SOMETHING'
WHERE NOT EXISTS (SELECT * FROM mytable WHERE other_key = 'SOMETHING')
RETURNING *
)
SELECT * FROM new_row
UNION
SELECT * FROM mytable WHERE other_key = 'SOMETHING';

donne :

 id | other_key 
----+-----------
  1 | SOMETHING
(1 row)