Update rows in a table using SQL expressions and an optional predicate filter. The update operation modifies existing data based on the specified column updates and filter conditions.
name of the table
A list to column updates. Each item is a pair of strings. The first string is the column name to update, and the second string is a SQL expression to update the column.
2 elements["price", "price + 0.10"]A filter expression that specifies the rows to update.
"id in (1, 2, 3)"
Update successful