Definition of FROM - SQL
Recall that the operand of FROM is denoted by a commalist, each element of that commalist being a table expression optionally accompanied by a range variable name. Then we can write:
Syantax:
FROM fe1 , fe2 , ... fen (n ≠ 0) is equivalent to FROM fe1 CROSS JOIN fe2 CROSS JOIN ... CROSS JOIN fen.