How in Mysql to select the last 10 records? I thought to do so (mysql_insert_id() - 10)
, but in this interval there may already be previously deleted records, and the last 10 records will fail. Help, plz.
|
How in Mysql to select the last 10 records? I thought to do so (mysql_insert_id() - 10)
, but in this interval there may already be previously deleted records, and the last 10 records will fail. Help, plz.
Source: https://ru.stackoverflow.com/questions/181298/
All Articles