Changes data in existing rows of the referenced table (dynamic event).
Transact-SQL Syntax
update [[database.]owner.]{table_name | view_name}
set column_name1 = ?
[, column_name2 = ?]...
[ where column_name relop ?
[ {AND | OR} column_name relop ? ...]]
update authors set au_lname = ? where au_id = ?
You can substitute table_name and view_name with any valid object in the catalog.
These relational operators (relops) are supported in search conditions:
=, <>, <, >, <=, >=, LIKE
Upon completion of the update command, the number of rows affected must be indicated.
ODBC does not support a from clause in the update statement. The access service ignores the from clause.