SQL - Common Table Expressions (CTEs)
Given the following SQL query, what will be the output?
WITH numbers AS (SELECT 1 AS num UNION ALL SELECT 2 UNION ALL SELECT 3) SELECT SUM(num) FROM numbers;
