If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Other > Access: retrieve all but top 20??

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-08-04, 13:59
tenshi tenshi is offline
Registered User
 
Join Date: Jul 2004
Posts: 1
Access: retrieve all but top 20??

Hello,

How can I retreive all records except for the TOP 20.
The query I have like this, but I can't get it to work:

SELECT OriginCntryCode, SUM(FEU) AS TotalFEU
FROM totalCntr
WHERE OriginCntryCode NOT IN (SELECT TOP 20 OriginCntryCode, SUM(FEU) AS TotalFEU
FROM totalCntr
GROUP BY OriginCntryCode
ORDER BY SUM(FEU) DESC);

Please help!!!

Thanks.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On