SELECT * FROM nyheter ORDER BY datum DESC limit 1,-1
Varför och hur funkar den? Alltså, vad betyder "limit1,-1"?
LIMIT är samma som TOP i access.
To retrieve all rows from a certain offset up to 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