Joining tables. Need Help
I am writing an employee time clock program that pulls the employee Id from one table (Associate) , but need to write the time in(out) to the other table(Time). I am using the statement
SQLQuery = "SELECT * FROM Associate INNER JOIN Time ON Time.EmpId=Associate.EmpId"
My error reads syntax in From clause.
The Assoicate table opens up fine in the form load, but the Time table does not.
Please help

