SQL - Common Table Expressions (CTEs)
What will be the output of this query?
SELECT * FROM (SELECT EmployeeID, Salary FROM Employees WHERE Salary > 50000) AS HighEarners WHERE EmployeeID < 100;
