delete from table where id in (select id from table order by id limit 0, 10);
其中table换成你要删除数据的那张表名
delete top(10) from tb1 order by id;
xing d