query question

  • Thread starter Thread starter golan
  • Start date Start date
G

golan

hello, i have a query that show who dont pay (at all) and a query that show
who obliged .
i want to show the results together ?

the tables are contracts , payments .
 
You need a UNION query. This will break unless the columns are matched, but
it will look like this ...


SELECT * FROM qryThoseWhoPay
UNION SELECT * FROM qryThoseWhoDont

To be safe, replace the * with a list of actual columns.
 

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

Similar Threads


Back
Top