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