码迷,mamicode.com
首页 >  
搜索关键字:explain    ( 1254个结果
mysql group by优化
mysql> explain select actor.first_name,actor.last_name,count(*) from sakila.film_actor inner join sakila.actor using(actor_id) group by film_actor.ac....
分类:数据库   时间:2014-12-18 10:20:44    阅读次数:230
mysql慢查询优化之explain的各列含义
mysql> explain select customer_id,first_name,last_name from customer;+----+-------------+----------+------+---------------+------+---------+------+---...
分类:数据库   时间:2014-12-17 23:59:44    阅读次数:426
MySQL学习笔记
一,创建表T1: create table t1( col1 char(6) not null default '', col2 character(6), col3 varchar(6), col4 national varchar(6));   二,查看表结构: desc t1; explain t1; show columns from t1; 三,查看表的定义:...
分类:数据库   时间:2014-12-17 22:41:00    阅读次数:496
mysql explain 详解
explain显示了mysql如何使用索引来处理select语句以及连接表。可以帮助选择更好的索引和写出更优化的查询语句。使用方法,在select语句前加上explain就可以了:如:explainselectsurname,first_nameforma,bwherea.id=b.idEXPLAI...
分类:数据库   时间:2014-12-17 09:44:35    阅读次数:164
MySql开启慢查询
分析MySQL语句查询性能的方法除了使用 EXPLAIN 输出执行计划,还可以让MySQL记录下查询超过指定时间的语句,我们将超过指定时间的SQL语句查询称为“慢查询”。查看/设置“慢查询”的时间定义1 mysql> show variables like "long%";2 +----------...
分类:数据库   时间:2014-12-14 00:38:22    阅读次数:236
Explain tables does not exist. Check the explain plan properties for this database connection.
使用DbVisulalizer链接db2,查看执行计划是报错误  Explain tables does not exist. Check the explain plan properties for this database connection. 就是执行计划的表不村子,检查执行计划属性。 查看连接属性如下 只有DB2LUW里面才有Explain Plan属性,所以先调...
分类:数据库   时间:2014-12-08 15:35:28    阅读次数:236
【转】Basic C# OOP Concept
This Article will explain a very simple way to understand the basic C# OOP ConceptDownload ShanuBasicCSharpOOPConceptV1.3.zip - 1.3 MBTable of Content...
分类:Windows程序   时间:2014-12-07 19:04:14    阅读次数:340
mysql查询语句优化
用explain优化了一个营业日汇总报表的查询。将一处type为all的查询改为range。sql是一个报表使用:EXPLAIN SELECT DATE_FORMAT(t1.business_date,'%Y-%m-%d') AS business_date, IF(t3.people_num>0,...
分类:数据库   时间:2014-12-05 18:56:00    阅读次数:216
mysql优化学习备忘之 explain
explain显示了mysql如何使用索引来处理select语句以及连接表。可以帮助选择更好的索引和写出更优化的查询语句。使用方法,在select语句前加上explain就可以了:如:explainselectsurname,first_nameforma,bwherea.id=b.idEXPLAIN列的解释:table:显示这一行的数据是关于哪张表..
分类:数据库   时间:2014-12-04 10:24:09    阅读次数:197
Color Calibration using ColorChecker
At the beginning, I need to explain some knowledge about color space.The raw RGB is linear, but the sRGB value generated by camera is nonlinear value....
分类:其他好文   时间:2014-11-29 14:27:55    阅读次数:130
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!