DELETE¶
Deletes one or more rows from a table. Works with both normal and Big Data storage.
Syntax¶
No WHERE = delete all rows
If you omit the WHERE clause, all rows in the table will be deleted.
LIMIT is not supported in DELETE statements.
Response¶
DELETE returns success: true on success. The response does not include the number of deleted rows. If no rows match the WHERE condition, the response is still success: true.
Examples¶
Delete rows matching a condition:
Delete rows with empty values: