Suppose I have a table
create table test( id integer, name text);
And I want to get the names of the largest 10 "id"s. How can I do that in sql?
Thanks!