MySQL查询语句优化.ppt_第1页
MySQL查询语句优化.ppt_第2页
MySQL查询语句优化.ppt_第3页
MySQL查询语句优化.ppt_第4页
MySQL查询语句优化.ppt_第5页
已阅读5页,还剩17页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

MySQL查询语句优化 Peng xu 2010 11 19 目录 为什么要对查询进行优化哪些方面可以优化MySQL索引机制如何发现慢查询如何分析慢查询日志查询语句优化实例分析 为什么要对查询进行优化 雅虎大部分产品都是对DB读取量大 写入量少一个快速的页面能显著增加用户体验一个没有调试过的SQL会弄死整个网站 哪些方面可以优化 优化硬件 操作系统优化MySQL服务器优化DB设计优化SQL语句优化应用 MySQL索引机制 什么是索引与表数据分开的独立的有序的物理结构索引的数据结构Btree Hash索引的种类主键 唯一索引 普通索引 复合索引 外键索引 如何发现慢查询 1 查看MySQLSlowQuery修改f文件long query time 2log slow queries home y logs mysql mysqld slow log 如何发现慢查询 2 用ysar命令查看在db服务器上安装包ysar ysar mysql用ysar my命令查看 如何发现慢查询 3 查看yapacheslow日志 为yapache安装yapache mod yahoo slow log包找出加载慢的页面 如何分析慢查询日志 mysqldumpslow sc t20host slow log按查询次数排序 top20mysqldumpslow st t20host slow log按查询时间排序 top20 使用MySQL自带的mysqldumpslow命令分析 实例分析所用环境 开发机 h07 操作系统 RHEL64 bitMySQL版本 mysql server 5 1 45 0 查询语句优化实例分析 单表 索引字段上进行运算会使索引失效usenengren 查询2009年12月的文章explainselectdate format from unixtime create time Y m asdfromarticlewheredate format from unixtime create time Y m 200912 orderbycreate timeasclimit10 测试 运算查询更慢explainselectdate format from unixtime create time Y m asdfromarticlewhere create time 100 1259596800andcreate time 1259596800andcreate time 1262275200orderbycreate timeasclimit10 查询语句优化实例分析 单表 MySQL选择的索引不一定是最好的usenengren 原始SQLexplainSELECTcount ascount stock code stock nameFROMarticleWHEREactive type 1ANDcreate time 1259596800GROUPBYstock codeLIMIT10 优化后 执行看效果 选择少的记录集更重要 explainSELECTcount ascount stock code stock nameFROMarticleUSEINDEX idx createtime WHEREactive type 1ANDcreate time 1259596800GROUPBYstock codeLIMIT10 查询语句优化实例分析 单表 简单的分页方法 usenengren 原始SQLexplainselectarticle id titlefromarticleorderbyarticle iddesclimit30000 10 优化后explainselectarticle id titlefromarticlewherearticle id 100000orderbyarticle iddesclimit10 查询语句优化实例分析 两表 两表关联查询增加排序字段 能够启用索引 优化前explainselecti gallery id i imagewidth t fromimage tagtinnerjoinimageioni imageurl t index urllimit0 10 优化后explainselecti gallery id i imagewidth t fromimage tagtinnerjoinimageioni imageurl t index urlorderbyt iddesclimit0 10 查询语句优化实例分析 两表 两表关联查询加上排序字段后有时也无法启用索引 usenengren test 优化前 生产机b和开发机explain结果不一样 需使用AnalyzeTable修复索引 explainselecta article id a title b telfromarticleainnerjoinnengrenbona yuid b yuidorderbya article iddesclimit10 优化后explainselecta article id a title b telfromarticlealeftjoinnengrenbona yuid b yuidorderbya article iddesclimit10 查询语句优化实例分析 三表 一个三表关联查询的优化 usejack 原始SQLexplainselecti id i icon i nickname i name i gender i applyTime v valuefromcontestant infoasiinnerjoincontestant statusassoni id s idleftjoinvotesasvoni id v uidwheres status 查询语句优化实例分析 三表 使用子查询优化selecta id a icon a nickname a name a gender a applyTime b valuefrom selecti id i icon i nickname i name i gender i applyTimefromcontestant infoasiinnerjoincontestant statusassoni id s idwheres status 查询语句优化实例分析 三表 三表关联SQL的简化 原始SQLexplainselectcount i id as cnt fromcontestant infoasileftjoincontestant statusassoni id s idleftjoinvotesasvoni id v uidwheres status 查询语句优化实例分析 三表 与上面的SQL取得的结果不同explainselectcount fromcontestant infoasileftjoin selectidfromcontestant statuswhereid 38570 assoni id s id 如果contestant status是contestant info的子集 votes是contestant status的子集 那么优化后的SQLexplainselectcount id as cnt fromcontestant statuswherestatus 查询语句优化实例分析 三表 有时MySQL选择的索引是最好的 减少记录集比去掉filesort更重要 usenengren 原始SQLexplainSELECTb grade a FROMarticleASaforceindex idx createtime INNERJOIN SELECTm n grade n point n point toplistFROMnengrenASmINNERJOINnengren pointASnONm yuid n yuidWHEREm status 1ANDn grade 4 ASbONa yuid b yuidWHEREa forecast type 1ANDa forecast yn 0ANDa trend 1ANDa active type 1ORDERBYa create timeDESCLIMIT10 优化后explainSELECTa article id n grade a titleFROMarticleASaINNERJOINnengrenasmona yuid m yui

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论