Cette commande spécifique peut être effectuée comme ceci :
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'
);
Il insérera le résultat de l'instruction select, et le select
ne renverra une ligne que si ce client n'existe pas.