ODBC guide

Update an invoice


Updates an existing invoice record in the Invoices table. This example shows how to modify the DaysUntilDue field for a specific invoice identified by its Id.

UPDATE Invoices
SET [DaysUntilDue] = 20
WHERE Id = 'abc'