Leathergator
Programmer
I have an sql query that needs to link to a table in Access. I have not been able to find a syntax that allows this. Say that I have Employee table in SQL 2000 and Address table in Access. Something along the line of:
Select EmployeeName, PhoneNumber
From Employee -- this is a SQL table
Inner Join Address -- this is an access table
on employee.employeeID = Address.EmployeeID
I know I can do this in reverse from access and link to SQL but can I do this in SQL linking to an Access table?
Select EmployeeName, PhoneNumber
From Employee -- this is a SQL table
Inner Join Address -- this is an access table
on employee.employeeID = Address.EmployeeID
I know I can do this in reverse from access and link to SQL but can I do this in SQL linking to an Access table?