Delete a customer (throw error if not found)
Deletes a customer record by ID. By default, no error is thrown if the ID is not found; set ContineOn404Error=0 in the WITH clause to force an error in that case.
DELETE Customers
WHERE Id=1111111111111
WITH(ContineOn404Error=0)