Ordering Query

M

Mary Fetsch

In my Access 2000 project, I need to show data from 2
tables in my form. I've set up a query as the record
source for my form. The query contains the following SQL:

Drop view TrxInquiry
Go
Create view TrxInquiry as
Select top 100 percent FILE_NUM from Table 1
union
Select top 100 percent FILE_NUM from Table 1
order by FILE_NUM

It's not ordering by FILE_NUM. If I delete the union and
second select statement, it works fine. If someone can
help me with this, I'll be very grateful.
 

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