Want to select 50 last rows from mysql within column named id which is primary key. At first look this question seems duplicated , but it isn't because here is my problem =>
During retrieving data I want that rows must be sorted by id ASC (that's why
SELECT * FROM table ORDER BY id DESC LIMIT 50
don't work) and also it is remarkable that rows can be manipulated (I mean can be deleted). From last statement this query don't work as well =>
SELECT * FROM table WHERE id>((SELECT MAX(id) FROM chat)-50) ORDER BY id ASC
How it is possible to retrieve last 50 rows from MySql within define scopes ? thanks
