The error is probably from the SELECT * - try listing all of the fields individually, including the [Employee ID] field. You can give it a new name to appear in the query results by aliasing it:
SELECT [employee ID] AS EmployeeID
but within the query itself you have to use the [Employee ID] syntax.
-reed