Is it available to write a query to use same \"LIMIT (from), (count)\", but get result in backwards?
In example if I have 8 rows in the table and I want to get 5 row
This way is comparatively more easy
SELECT doc_id,serial_number,status FROM date_time ORDER BY date_time DESC LIMIT 0,1;