https://kotlinlang.org logo
n

Nikky

02/17/2020, 9:27 AM
is there any example how to join over 3 tables in exposed? tables similar to this: https://stackoverflow.com/questions/8057656/join-over-three-tables-in-sql
t

tapac

02/17/2020, 1:03 PM
Same way as the two table join:
Copy code
Table1.innerJoin(Table2).innerJoin(Table3).selectAll()
2 Views