PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Istruzione condizionale INSERT INTO in postgres

Quel comando specifico può essere eseguito in questo modo:

insert into LeadCustomer (Firstname, Surname, BillingAddress, email)
select 
    'John', 'Smith', 
    '6 Brewery close, Buxton, Norfolk', '[email protected]'
where not exists (
    select 1 from leadcustomer where firstname = 'John' and surname = 'Smith'
);

Inserisce il risultato dell'istruzione select e select restituirà una riga solo se quel cliente non esiste.