Displaying many tables one after the other

FLabrecque

Registered User.
Local time
Today, 08:22
Joined
Nov 9, 2004
Messages
93
I have 3 tables containing with relatively the same layout. I wish to extract the ID of each of these tables using 1 query (that I could later use to access all of these IDs). Joining these tables is not an option (it would probably be too easy!).

Any leads on how to proceed? I know how to do it on Oracle 9i... but this is Access!
 
Assuming that you only want to see unique values, a union query might work.
Something like:

Select ID1 from TableOneID
union
Select ID1 from TableTwoID
union
Select ID1 from TableThreeID

HTH :cool:
 

Users who are viewing this thread

Back
Top Bottom