In Oracle, An Introduction to SQL and PL/SQL, there is a discussion of Joins. The statement follows:
To join n tables together, you need a minimum of (n-1) join conditions.
The use of the words "At Least"
Indicates I can do the following:
where table1.column1 = table2.column2
AND table1.column3 = table2.column4
Any examples of such a thing?