Optional alias for the table
Whether the alias was declared with explicit AS keyword
FORCE INDEX hint (MySQL): DELETE FROM t FORCE INDEX (idx)
JOINs in MySQL multi-table DELETE: DELETE t1 FROM t1 LEFT JOIN t2 ...
Leading comments before the statement
LIMIT clause (MySQL)
BigQuery-style DELETE without FROM keyword: DELETE table WHERE ...
Optionalon_ClickHouse: ON CLUSTER clause for distributed DDL
ORDER BY clause (MySQL)
OUTPUT clause (TSQL)
RETURNING clause (PostgreSQL)
MySQL multi-table DELETE: DELETE t1, t2 FROM ... or DELETE FROM t1, t2 USING ... These are the target tables to delete from
True if tables were after FROM keyword (DELETE FROM t1, t2 USING syntax) False if tables were before FROM keyword (DELETE t1, t2 FROM syntax)
PostgreSQL/DuckDB USING clause - additional tables to join
WITH clause (CTEs)
DELETE statement