码迷,mamicode.com
首页 > 数据库 > 详细

MySQL 语句优化

时间:2016-06-09 22:27:36      阅读:277      评论:0      收藏:0      [点我收藏+]

标签: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)


本文出自 “王森” 博客,请务必保留此出处http://zhibeiwang.blog.51cto.com/7555525/1787656

MySQL 语句优化

标签:mysql 语句优化

原文地址:http://zhibeiwang.blog.51cto.com/7555525/1787656

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!