SQL - Common Table Expressions (CTEs)
Identify the syntax error in the following SQL using a CTE:
WITH EmployeeCTE (id, name) AS SELECT id, name FROM employees GROUP BY id SELECT * FROM EmployeeCTE;