Skip to main content
Delete records in Standard by appending the table declaration with a - and the query conditions that identify which records to remove. You can use the same filter syntax available for finding records to precisely target rows for deletion.

Example

Delete all vehicles with the make Chevy:
Deletions are permanent and cannot be undone. Use the LIMIT parameter in your filter to avoid deleting more records than intended — for example: [vehicles] - <make "Chevy", LIMIT 1>.