command-update
Writes new values to existing row(s) in a table
Format
UPDATE Table
SET update-element [ , update-element ]*
[ WHERE bool-condition ]
Remarks
UNEXPECTED BEHAVIOR OF APPLICATION
The searched UPDATE command writes new values to row(s) in a database table. The operation is multi-row in that it can update zero or more rows in a single operation.
The optional WHERE clause defines a condition which selects which rows will be updated. If the WHERE clause is omitted, all rows in the table will be updated.
UPDATE CPointDigitalManual
SET CurrentState = 1
WHERE FullName = 'Test Point'