I have three tables I wish to inner join by a common column between them.
Say my tables are;
TableA TableB TableC
I wish to join
select * from tableA a inner join tableB b on a.common = b.common inner join TableC c on b.common = c.common