PostgreSQL - Set Operations and Advanced Queries
What will be the output of this query?
SELECT * FROM (VALUES (10, 'X'), (20, 'Y')) AS t(num, letter) WHERE num > 15;
SELECT * FROM (VALUES (10, 'X'), (20, 'Y')) AS t(num, letter) WHERE num > 15;
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions