Well I have the SQL statement below and I want to add the word "ALL" on top, counting all records and Keeping EmployeeID to LastName and "*" for "ALL".
How can I do that?
Luthius
How can I do that?
Code:
SELECT LastName, Count(Orders.EmployeeID) AS ContarDeEmployeeID
FROM Employees INNER JOIN Orders ON Employees.EmployeeID = Orders.EmployeeID
GROUP BY Employees.LastName;
Luthius
Last edited: