Mailinglisten-Archive |
> from: "Barbara Griem", subject: "letzte 10 Datensätze" > Wahrscheinlich kommt diese Frage alle drei Wochen hier und es ist > alles total simpel, aber ich komm nicht drauf. > Wie selecte ich die letzten 10 (nach Datum) Einträge in der Datenbank?? untested: select [...] limit -10,10; http://www.mysql.com/doc/en/SELECT.html <snip> The LIMIT clause can be used to constrain the number of rows returned by the SELECT statement. LIMIT takes one or two numeric arguments. The arguments must be integer constants. If two arguments are given, the first specifies the offset of the first row to return, the second specifies the maximum number of rows to return. The offset of the initial row is 0 (not 1): mysql> SELECT * FROM table LIMIT 5,10; # Retrieve rows 6-15 To retrieve all rows from a certain offset upto the end of the result set, you can use -1 for the second parameter: mysql> SELECT * FROM table LIMIT 95,-1; # Retrieve rows 96-last. If one argument is given, it indicates the maximum number of rows to return: mysql> SELECT * FROM table LIMIT 5; # Retrieve first 5 rows In other words, LIMIT n is equivalent to LIMIT 0,n. <snap> P. Bierans -- Patrick Bierans - LYNET Kommunikation AG - http://www.lynet.de Das Internet-Systemhaus fuer Multimedia- und Netzwerkloesungen Zentrale Luebeck Fon +49-451-6131-0, Fax +49-451-6131-333 Niederlassung Hamburg Fon +49-40-65738-0, Fax +49-40-65738-333 --- Infos zur Mailingliste, zur Teilnahme und zum An- und Abmelden unter -->> http://www.4t2.com/mysql
php::bar PHP Wiki - Listenarchive