Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2007
    Posts
    1

    Once query to lookup information in multiple tables

    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. #2
    Join Date
    Jul 2007
    Location
    NY
    Posts
    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

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Table related to multiple tables by single ID
    By MrTumnus in forum Access
    Replies: 1
    Last Post: 11-17-2009, 02:05 PM
  2. lookup values in backend tables
    By deb56 in forum Database Design
    Replies: 1
    Last Post: 01-23-2008, 11:12 AM
  3. Replies: 1
    Last Post: 06-21-2007, 01:02 PM
  4. Lookup Tables
    By JoeBio in forum Database Design
    Replies: 1
    Last Post: 09-01-2006, 07:34 AM
  5. Creating multiple reports from one Query
    By Mike Cooper in forum Reports
    Replies: 5
    Last Post: 04-24-2006, 05:00 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums