PostgreSQL - Subqueries in PostgreSQL
Which of the following is the correct syntax for a subquery in PostgreSQL?
SELECT * FROM table WHERE column = (SELECT MAX(column) FROM table); correctly uses parentheses and = with a subquery. The other options have syntax errors like using == instead of =, omitting parentheses entirely, or missing them after IN.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions