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