我有一个包含 200000 行的数据库。在这 200000 行中,我想要最新的 25000,而我需要最旧的 id(列 entity_id)。
到目前为止,这是我的查询:select * from sales_flat_order order by entity_id desc limit 25000;
这已经永远运行了。有没有更好的办法?也许在位置 25000 上获取 entity_id 更容易,但必须订购,我需要在最新条目的位置 25000 上拥有 id。
这是表的创建语句:https ://pastebin.com/mrY7CTP8
谢谢!