Hello, Thank you very much for this suggestion. This is currently not supported in jOOQ, out-of-the-box. But it should be. I've created a feature request for this: https://github.com/jOOQ/jOOQ/issues/5230
In the meantime, you can resort to "plain SQL": http://www.jooq.org/doc/latest/manual/sql-building/plain-sql Or to patching the SQL statement using an ExecuteListener. Cheers, Lukas 2016-04-29 21:49 GMT+02:00 jdoe <[email protected]>: > Hello! > > I'm wondering if there's any possibility to add table names between DELETE > and FROM in order to make something like this (MySQL): > > DELETE *t1, t2* FROM t1 INNER JOIN t2 INNER JOIN t3 > WHERE t1.id=t2.id AND t2.id=t3.id; > > -- > You received this message because you are subscribed to the Google Groups > "jOOQ User Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
