• + 0 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.