PostgreSQL - Joins in PostgreSQL
Given two tables:
id | name
1 | Alice
2 | Bob
code
X
Y
What is the result of:
Table A:id | name
1 | Alice
2 | Bob
Table B:code
X
Y
What is the result of:
SELECT A.name, B.code FROM A CROSS JOIN B;