141k views
4 votes
Which ORDER BY clause causes 10 rows to be retrieved from the result set, starting with the 20th row?

User Krejko
by
7.6k points

1 Answer

3 votes
Limiting the number of results to 10 is typically not achieved in the ORDER BY clause. You would do it with the TOP or LIMIT or ROWNUM keyword, depending on your database technology.


User DialFrost
by
7.9k points