ODBC guide

Update a product name


Updates the name of a product in the Products table. This example shows a simple update operation targeting a single column for a specific product identified by its Id.

UPDATE Products
SET [name] = 'new name'
WHERE Id = 'abc'