SQL - Set Operations
What will be the output of this query?
Given:
Table1: {10, 20, 30}
Table2: {20, 30, 40}
SELECT id FROM Table1 INTERSECT SELECT id FROM Table2;Given:
Table1: {10, 20, 30}
Table2: {20, 30, 40}
