OUTER JOIN

J

Jamie

I have four tables that DO NOT share information, but DO
share the same field names. I need to create a report
that draws information from all four tables during a
certain period of time. I can not find the syntax in SQL
to make it happen. ANY IDEAS??? I do not want to use a
UNION- since none of the tables have a relationship other
than the same field names.
 
R

Roger Carlson

Since the data in each table has no relationship to the data in any other
table, you can't Join them. I'd just create four separate reports, then
place them on a 5th report as sub-reports.
 
B

Bas Cost Budde

Jamie said:
I have four tables that DO NOT share information, but DO
share the same field names. I need to create a report
that draws information from all four tables during a
certain period of time. I can not find the syntax in SQL
to make it happen. ANY IDEAS??? I do not want to use a
UNION- since none of the tables have a relationship other
than the same field names.

You can UNION them (not JOIN), effectively creating a grand table with
all records.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top