Hello everyone. Do anyone know if is it possible t...
# exposed
l
Hello everyone. Do anyone know if is it possible to perform a
DELETE
based on join conditions? Like
Copy code
DELETE FROM Table1
   INNER JOIN Table2
   ON Table2.table1_id = Table1.id
   WHERE <http://Table2.xxx|Table2.xxx> = 'yyy' AND Table1.zzz = 'zzz'
Is it possible with the DSL?
g
Found the way?