What is wrong with this code? What would be the correct syntax?
SELECT EmployeeID, SUM('More than 2 orders')
FROM Orders
WHERE EmployeeID 2
GROUP BY EmployeeID
Msg 8117, Level 16, State 1, Line 1
Operand data type varchar is invalid for sum operator.