mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-05-10 02:01:04 +03:00
7 lines
151 B
SQL
7 lines
151 B
SQL
DELETE FROM TableA
|
|
WHERE NOT EXISTS
|
|
( select *
|
|
from TableB
|
|
where TableA .field1 = TableB.fieldx
|
|
and TableA .field2 = TableB.fieldz );
|