I have some legacy code I'm going through, and i just found a join with two "on" clauses...
select * from table
inner join table3
inner join table2 on table3.key = table2.fkey on table.key = table2.otherkey
What does this kind of join mean? (It currently works so it's not a syntax error)
(Edit: Fixed the code, was missing a join)