MySQL 语句优化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 语句优化相关的知识,希望对你有一定的参考价值。
select * from b_common_product_param where cname = ‘Type‘ order by ename limit 100000, 10;
select * from b_common_product_param INNER JOIN
(select id from b_common_product_param where cname = ‘Type‘ order by ename limit 100000, 10) as x using (id);
#第一条Sql查询时间:49.612
#第二条Sql查询时间:22.545
表数据:12740129
用于表连接时给定连接条件(可以理解为简写形式),如
SELECT * FROM table1 JOIN table2 ON table1.id = table2.id
使用 USING 可以写为:
SELECT * FROM table1 JOIN table2 USING(id)
以上是关于MySQL 语句优化的主要内容,如果未能解决你的问题,请参考以下文章
mysql GROUP BY、DISTINCT、ORDER BY语句优化