PostgreSQL - Subqueries in PostgreSQL
Consider the query:
What does this query return?
SELECT product_name FROM products WHERE category_id IN (SELECT id FROM categories WHERE active = true);
What does this query return?
