What happens when you join two tables together without an on clause?
Answers
Answered by
0
SELECT
SUM(a.column1) AS table_a_sum,
SUM(b.column1) AS table_b_sum,
SUM(a.column1) - SUM(b.column1) AS difference
FROM table_a a
JOIN table_b b
ON ??????
Similar questions
Math,
7 months ago
Biology,
1 year ago
CBSE BOARD X,
1 year ago
Social Sciences,
1 year ago
Geography,
1 year ago