Concept Flow - CROSS JOIN cartesian product
Start with Table A
Start with Table B
Pair each row of A with each row of B
Create combined rows for every pair
Result: All possible combinations
End
CROSS JOIN pairs every row from the first table with every row from the second table, creating all possible combinations.