Create an auto-increment field
alter table scores add id int unique auto_increment not null;
This will automatically write your lines in the order you select the request without conditions or order
select * scores;
delete from scores where id > 50;
Finally, delete this field.
alter table scores drop id;
source
share