![]() |
|
|
#1
|
|||
|
|||
|
Hi All,
I have a number of tables and I want to use a query to extract the information (Lookup specific dates) so that I can generate a single report. I have managed to get it correct on 1 table however my ulitmate goal is to generate 1 report from information contatained in 4 different tables. I must stress that the information contained within each table is total independant and has no common area except the date, I want to present this info in seperate sections in 1 report. Am I going about it the right way? Any help greatly appreciated Thanks |
|
#2
|
|||
|
|||
|
Your query should use a JOIN.
SELECT * FROM table 1 INNER JOIN table2 ON table1.date = table2.date; This will return all the information in both tables where the date in table1 is the same as the date in table2. Brenda |
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Table related to multiple tables by single ID | MrTumnus | Access | 1 | 11-17-2009 11:05 AM |
| lookup values in backend tables | deb56 | Database Design | 1 | 01-23-2008 08:12 AM |
| Combining columns from multiple tables/queries into one? | ggranger007 | Access | 1 | 06-21-2007 11:02 AM |
| Lookup Tables | JoeBio | Database Design | 1 | 09-01-2006 05:34 AM |
| Creating multiple reports from one Query | Mike Cooper | Reports | 5 | 04-24-2006 03:00 PM |