List: | General Discussion | « Previous MessageNext Message » | |
From: | jkraai | Date: | March 29 1999 2:57am |
Subject: | Re: select largest | ||
View as plain text |
lorin@stripped wrote: > > I have a database with a column defined as: > NOT NULL AUTO_INCREMENT > Is there a simple SELECT statement to grab the 5 largest entries? select * from table order by <auto_increment field> desc limit 5