_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:
But I'm not sure how to go about creating the relationship on SQL and linking the new tables to Access.
Thanks,
Jonathan
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
Thanks,
Jonathan