xxxxxxxxxx
-- By using a transaction we make sure that the two DELETE must be executed
-- together and if either of them fails, changes are not saved to the database
BEGIN TRANSACTION;
DELETE FROM HumanResources.JobCandidate
WHERE JobCandidateID = 13;
DELETE FROM HumanResources.JobCandidate
WHERE JobCandidateID = 12;
COMMIT;