View Single Post
  #3 (permalink)  
Old 09-02-2006, 07:50 AM
Dimitar
 
Posts: n/a
Default MySQL answer. Re: How do I select the highest 20 to 30 values?

Wouldn't this also do the trick?
[sql]
select * from competition order by score desc limit 19,10;
[/sql]
Edit/Delete Message Reply With Quote