嵌套查询,in里层有序的主键,查询出的数据没有按照主键排序

  1. select * from t1 where id in (select id from t1 where id > 432100 order by id asc limit 4000);

这个语句结果没排序,为啥会认为最后一条是最大值?