You're kidding, right?
Same way you create any other select query in Access.
Click on the Queries tab,
create a new one.
drop the two tables into your query.
join the two tables on the Primary|Foreign keys.
right click on the line between the two tables.
Select either 2 or 3... show all records from ... and choose the table
that containes all the records.
Full outer join? (allow both tables to have missing records) - that's
harder. Can't be done directly in Access SQL without a union.
Create a query based on your table.
Select all the fields that you want to see.
In the Criteria line underneath the field in question type the exact text
IS NOT NULL
The query will then show only records for which there is data in that field.
Then - to see what Piet was getting at - select View... SQL on the menu. The
query grid is just a tool, a way to construct queries; the *real* query is the
SQL that it constructs. If you're communicating about queries on the
newsgroups, post the SQL - it may look cryptic now, but to those of us who've
been using databases for a while it's like reading plain text.
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.