mysql 涉及到的优化

来源:互联网 发布:tp网络价格是什么意思 编辑:程序博客网 时间:2024/05/22 08:22

select min(id) from table_name where ;
优化后:
select id from table_name use index(primary) where …;