MySQL解释
比特网解释 mysql 查询语句
解释 SQL 语句性能测试返回值的具体含义:
Sqlcode
mysql>解释 SELECT `content_id` , `content_old_id`, `content_hasimg` ,`content_time_update`, `content_title_long`, `vhost_content`.`site_id`, `site_domain`, `site_name`, `site_state` FROM `vhost_content` LEFT JOIN `vhost_site`在 `vhost_content`.`site_id` = `vhost_site`.`site_id` 上,其中 `content_effect` = 1 AND `content_audit` = 1 AND `content_publish` = 1 AND `content_time_update` >= '2012-12-16' AND ` vhost_content`.`site_id` LIKE '001001001%' AND 1=1 ORDER BY `content_time_update` desc LIMIT 0 , 25;
---- ------------- ------------------ ------- ----- -------------------------------------------------- ------------------- ------------------ --------- ---- --------------------------- ------------------ ----------------- ------------
|编号 |选择类型 |表 |类型 | possible_keys |钥匙 | | key_len |参考 |行 |额外 |
---- ------------- ------------------ ------- ----- -------------------------------------------------- ------------------- ------------------ --------- ---- --------------------------- ------------------ ----------------- ------------
| 1 |简单| |虚拟主机内容 |范围 | idx_content_site、Refvhost_site483、idx_content_uptime、idx_content_publish | idx_内容_站点 | 55 | NULL | 198 | 198使用地点;使用文件排序 |
| 1 |简单| |虚拟主机站点 |参考 |主要 |主要 | 54 | vhostdb.vhost_content.site_id | 1 | |
---- ------------- ------------------ ------- ----- -------------------------------------------------- ------------------- ------------------ --------- ---- --------------------------- ------------------ ----------------- ------------
Table: 显示语句该涉及数据库
Type: 这列很重要,显示了该连接使用了各种类别,有无使用索引,反应语句的质量。结果值从好到坏依次是:系统>常量> eq_ref >参考>全文> ref_or_null >索引_合并>唯一子查询>索引子查询>范围>指数> ALL ,总体,得保证查询至少达到范围级别,最好能达到参考级别,否则就可能出现性能问题。
Possible_key : 指示mysql能够使用哪个索引在该表中找到行
Key:显示mysql实际使用的键(索引),如果没有选择索引,则为null。
Key_len:显示mysql使用决定的键长度。如果为null,则长度为null,在不损失精确性的情况下,长度越短越好。
Ref:显示使用哪个列或常用与键一起从表中选择行。
Rows: mysql显示它认为它执行查询时必须检查的行数。
额外:包含mysql解决查询的详细信息。
bitsCN.com