Copy Tables and Create Links with SQL Backend

_JSincliar

Registered User.
Local time
Yesterday, 22:15
Joined
Dec 9, 2009
Messages
16
I have 2 tables, A and B, in a 1-1 relationship and on an SQL backend.
With my Access front end, I would like to be able to make renamed copies of these tables on SQL, create the 1-1 relationship between the copies, and link them down to my front end.

To make the copy, I was going to use:
Code:
SELECT *
INTO CopyA
FROM A
But I'm not sure how to go about creating the relationship on SQL and linking the new tables to Access.

Thanks,
Jonathan
 

Users who are viewing this thread

Back
Top Bottom