Mysql
 sql >> Database >  >> RDS >> Mysql

seleziona tutte le righe tranne le quattro più recenti

Il LIMIT causa consente di impostare un offset.

SELECT * FROM mytable ORDER BY news_date LIMIT 3,18446744073709551615;

L'offset della riga iniziale è 0 (non 1). Per maggiori informazioni leggi 'SELECT Syntax' nel manuale MySQL .