I have the code be low that is giving me an error "The SELECT stament encludes a reserve word..." I am trying to get this code to pull a report on the employees and list them and there time to make it easy for accounting. HELP
SELECT DISTINCTROW Employees.SSN, Employees.Name AS Name Employees.PayRate AS PayRate Employees.TotalTime AS Time FROM Employees WHERE (((Employees.Inactive)=No) AND ((Employees.SSN) Is Not Null)) GROUP BY Employees.SSN;
SELECT DISTINCTROW Employees.SSN, Employees.Name AS Name Employees.PayRate AS PayRate Employees.TotalTime AS Time FROM Employees WHERE (((Employees.Inactive)=No) AND ((Employees.SSN) Is Not Null)) GROUP BY Employees.SSN;