How to do a query to find the three highest balances in a access table

armrodnun

New member
Local time
Today, 12:02
Joined
Jul 9, 2009
Messages
8
I have a table that I need to query the three advertisers with the highest balance. How can i do that?
 
Without knowing more about the data, I'll simply point out the TOP predicate:

SELECT TOP 3 FieldName...
 

Users who are viewing this thread

Back
Top Bottom