You are viewing a single comment's thread. Return to all comments →
FROM table1, table2 WHERE x=y...
... this is essentially a JOIN in the old syntax.
... FROM table1, table2... will elicit a CROSS product... which will be "subset-ed" using WHERE.
Seems like cookies are disabled on this browser, please enable them to open this website
New Companies
You are viewing a single comment's thread. Return to all comments →
FROM table1, table2 WHERE x=y...
... this is essentially a JOIN in the old syntax.
... FROM table1, table2... will elicit a CROSS product... which will be "subset-ed" using WHERE.