PostgreSQL - Set Operations and Advanced Queries
Which of the following is the correct syntax to combine two SELECT queries using UNION in PostgreSQL?
SELECT col1 FROM table1 UNION SELECT col1 FROM table2; is correct. JOIN is for table joins; + is invalid syntax; INTERSECT is a different operation.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions