https://kotlinlang.org logo
Title
u

user

07/21/2022, 11:01 AM
Translate the following query in spring boot jooq query builder I have the following query: SELECT COALESCE(t2.name, t3.name) as name FROM table1 as t1 LEFT JOIN table2 as t2 ON t1.id = t2.id LEFT JOIN table2 as t3 ON t1.id2 = t3.id2 So I want to translate the above into jooq query builder! I did the following, but not sure if that is right or not: dbReader.select( t.name ).from(table1).leftJoin(table2).on(table2.id.eq(table1.id).or(table2.id2.eq(table1.id2)) something like that... Is that correct? Or there is a better way !