Thread
:
How do I select the highest 20 to 30 values?
View Single Post
#
3
(
permalink
)
09-02-2006, 07:50 AM
Dimitar
Posts: n/a
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]
Dimitar