cURL
curl --request PUT \ --url https://{db}.{region}.api.lancedb.com/v1/tables/{name}/data \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data '{ "updates": [ [ "price", "price + 0.10" ] ], "predicate": "id in (1, 2, 3)" }'
This response does not have an example.
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
Update successful