PostgreSQL - Common Table Expressions
Given the query:
What will this query return?
WITH cte AS (SELECT id, name FROM users WHERE active = true) SELECT * FROM cte WHERE id < 5;
What will this query return?
