Is it possible to do the following join
?
Select *
From table1
Inner join table2 on table1.pk = table2.fk
Inner join table3 on table2.pk = table3.fk and table1.pk = table3.fk
Normally I have only use two tables in one join
statement. The last statement has three tables.