T
tma
I'm using a SELECT statement like the following:
SELECT table1.ItemA, table2.itemB FROM table1, table2
However, I can't tell if the designer is changing that statement to:
SELECT table1.ItemA, table2.itemB FROM table1 CROSS JOIN table2
Is this the same? What's a CROSS JOIN?
SELECT table1.ItemA, table2.itemB FROM table1, table2
However, I can't tell if the designer is changing that statement to:
SELECT table1.ItemA, table2.itemB FROM table1 CROSS JOIN table2
Is this the same? What's a CROSS JOIN?