Combining Queries

  • Thread starter Thread starter Owen
  • Start date Start date
O

Owen

Hi,

I have a 1 table and two queries.

Table 1 has at fields: FCN Number and Error Source
Query 1 has 2 fields : Labor Cost and Equipment Cost
Query 2 has 2 fields: Labor Cost and Equipment Cost

I have two queries because two different cost sources are
paid differently.

Is there a way to combine the two queries in to one query
sorted by FCN Number?

TIA

Owen
 
Try the key word UNION.

Query1.Sql
UNION
Query2.Sql
ORDER BY FCN
 

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

Back
Top