SQL - Common Table Expressions (CTEs)
Identify the error in this SQL query:
WITH first_cte AS (SELECT 100 AS amount), second_cte AS (SELECT amount FROM third_cte) SELECT * FROM second_cte;
