Computer Science, asked by anujjaiswal3605, 1 year ago

What happens when you join two tables together without an on clause?

Answers

Answered by mandvichaturvedi123
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