MySQLexplain
一.语法
EXPLAIN select sid,filename,filetype from (SELECT * from by_disk_file where uid=830814) a
结果:
id:SQL执行顺序标示,SQL是从大到小执行的
select_type:为查询类型,有以下几种:
1.SIMPLE
简单SELECT(不使用UNION或子查询等)
例如:
explain SELECT * from by_disk_file where uid=830814
2.PRIMARY
最外层的查询操作
例如:
explain select * from (SELECT * from by_disk_file where uid=830814 )
3.UNION
UNION中的第二个或后面的SELECT语句
例如:
explain select * from by_disk_file where uid=830814 union all select * from by_disk_file
4.DEPENDENT UNION
UNION中的第二个或后面的SELECT语句,取决于外面的查询
例如:
explain select * from by_disk_file where uid in(select id from by_common_member where username='mm' union all select id from by_common_member where username='gg')
5.UNION RESULT
UNION的结果
例如:
explain select * from by_disk_file where uid=830814 union all select * from by_disk_file UNION ALL select * from by_disk_file where uid=830814
UNION查询的步骤(根据以上内容):
定义一个UNION结果集->UNION获得语句(从右到左)->第一条语句->结果全获取返回
6.SUBQUERY
子查询中的第一个查询
explain select * from by_disk_file where uid=(select uid from by_common_member where username='mm')
7.DEPENDENT SUBQUERY
子查询中的一个查询,取决于外面的查询
explain select * from by_disk_file where sid in (select sid from by_disk_file where uid=830814)
explain select * from by_disk_file where sid =(select sid from by_disk_file where uid=830814 LIMIT 1)
备注:如果外面的查询不是范围查询只会被查到一次,则为SUBQUERY
如果是使用in类似的范围查询,则为DEPENDENT SUBQUERY
8.DERIVED
派生表的查询(FROM子句的子查询)
EXPLAIN select sid,filename,filetype from (SELECT * from by_disk_file where uid=830814) a

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

深入解析C语言中static关键字的作用和用法在C语言中,static是一种非常重要的关键字,它可以被用于函数、变量和数据类型的定义上。使用static关键字可以改变对象的链接属性、作用域和生命周期,下面就来详细地解析一下static关键字在C语言中的作用和用法。static变量和函数:在函数内部使用static关键字定义的变量称为静态变量,它具有全局生命周

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

“mysql-connector”是mysql官方提供的驱动器,可以用于连接使用mysql;可利用“pip install mysql-connector”命令进行安装,利用“import mysql.connector”测试是否安装成功。

在mysql中,是否需要commit取决于存储引擎:1、若是不支持事务的存储引擎,如myisam,则不需要使用commit;2、若是支持事务的存储引擎,如innodb,则需要知道事务是否自动提交,因此需要使用commit。

方法:1、利用“字符串+0”转换,语法为“(column+0)”;2、利用CONVERT函数转换,语法为“CONVERT(column,SIGNED)”;3、利用CAST函数转换,语法为“CAST(column as SIGNED)”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
