To konkretne polecenie można wykonać w następujący sposób:
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'
);
Wstawi wynik instrukcji select, a select
zwróci wiersz tylko wtedy, gdy ten klient nie istnieje.