Delete a customer
Deletes a customer record from the Customers table. This example demonstrates how to remove a customer using the DELETE FROM statement with a specific Id in the WHERE clause.
DELETE FROM Customers
WHERE Id = 'abc'
Deletes a customer record from the Customers table. This example demonstrates how to remove a customer using the DELETE FROM statement with a specific Id in the WHERE clause.
DELETE FROM Customers
WHERE Id = 'abc'