is there any example how to join over 3 tables in ...
# exposed
n
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
Same way as the two table join:
Copy code
Table1.innerJoin(Table2).innerJoin(Table3).selectAll()