cURL
curl --request POST \ --url https://{db}.{region}.api.lancedb.com/v1/table/{name}/delete \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "predicate": "id in (1, 2, 3)" } '
{}
Delete rows from a table using a SQL predicate filter. The delete operation permanently removes rows that match the specified filter criteria.
name of the table
A filter expression that specifies the rows to delete.
"id in (1, 2, 3)"
Delete successful