| List: | General Discussion | « Previous MessageNext Message » | |
| From: | Stefan Paletta | Date: | March 29 1999 2:33am |
| Subject: | RE: select largest | ||
| View as plain text | |||
lorin@stripped wrote/schrieb/scribsit: > 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 foocol from bartable order by foocol desc limit 5 Stefan
