PostgreSQL - Subqueries in PostgreSQL
Consider the table
orders(amount) with values 100, 200, 300. What does this query return?SELECT amount FROM orders WHERE amount < ANY (SELECT amount FROM orders WHERE amount > 150);