Hi, I want to express this statement in jOOQ:
> DELETE a FROM table_a a > LEFT JOIN table_b b > ON a.id = b.a_id > WHERE a.id IS NULL; > Unfortunately delete statements seem to work only with the WHERE clause : > DSL.using(configuration()).delete(TableA).join(..) > // Does not exist: -------------------------------> ^^^ > I tried to look in the docs, but the docs server http://jooq.org/learn seems down :( Cheers, Aurélien -- 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.
