A armrodnun New member Local time Today, 12:02 Joined Jul 9, 2009 Messages 8 Jul 9, 2009 #1 I have a table that I need to query the three advertisers with the highest balance. How can i do that?
I have a table that I need to query the three advertisers with the highest balance. How can i do that?
pbaldy Wino Moderator Staff member Local time Today, 12:02 Joined Aug 30, 2003 Messages 36,272 Jul 9, 2009 #2 Without knowing more about the data, I'll simply point out the TOP predicate: SELECT TOP 3 FieldName...
Without knowing more about the data, I'll simply point out the TOP predicate: SELECT TOP 3 FieldName...