1. How are consecutive CTE definitions separated inside a single WITH block?
- By repeating the WITH keyword.
- By using commas.
- By using UNION ALL.
- By semicolons.
Hint: To define multiple CTEs, use one WITH keyword, separate each CTE block with a comma, and run the main query at the end.