वह विशिष्ट आदेश इस प्रकार किया जा सकता है:
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'
);
यह चयन कथन का परिणाम सम्मिलित करेगा, और select
यदि ग्राहक मौजूद नहीं है तो केवल एक पंक्ति लौटाएगा।