PostgreSQL - Set Operations and Advanced Queries
Given two tables:
What will be the output of this query?
tableA(id) VALUES (5), (6), (7);tableB(id) VALUES (6), (7), (8);What will be the output of this query?
SELECT id FROM tableA EXCEPT SELECT id FROM tableB;
