Concept Flow - CROSS JOIN behavior
Start with Table A
Start with Table B
Combine each row of A with every row of B
Result: All possible pairs of rows
Output the combined rows
CROSS JOIN pairs every row from the first table with every row from the second table, creating all possible combinations.