服务器之家

服务器之家 > 正文

图文详解Mysql中如何查看Sql语句的执行时间

时间:2022-01-24 17:42     来源/作者:小王java

mysql中如何查看sql语句的执行时间

一、初始sql准备

初始化表

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- 用户表
create table t_users(
                        id int primary key auto_increment,
-- 用户名
                        username varchar(20),
-- 密码
                        password varchar(20),
-- 真实姓名
                        real_name varchar(50),
-- 性别 1表示男  0表示女
                        sex int,
-- 出生年月日
                        birth date,
-- 手机号
                        mobile varchar(11),
-- 上传后的头像路径
                        head_pic varchar(200)
);

初始化数据

?
1
2
3
4
5
6
7
--添加用户数据
insert into t_users values(null,'whj','123456','王恒杰',1,now(),'12345678901','boy.jpg');
insert into t_users values(null,'dzw','123456','邓正武',1,now(),'12345678901','boy.jpg');
insert into t_users values(null,'yfj','123456','杨福君',1,now(),'12345678901','girl.jpg');
insert into t_users values(null,'zx','123456','张西',1,now(),'12345678901','girl.jpg');
insert into t_users values(null,'zxj','123456','周宣君',0,now(),'12345678901','boy.jpg');
insert into t_users values(null,'lfk','123456','刘福昆',1,now(),'12345678901','boy.jpg');

表结构

图文详解Mysql中如何查看Sql语句的执行时间

相关数据

图文详解Mysql中如何查看Sql语句的执行时间

二、mysql查看sql语句的执行时间

1、show profiles;

最开始输入show profiles.此时没有数据

图文详解Mysql中如何查看Sql语句的执行时间

2、show variables; show varables:查看profiling是否开启,即value为on

图文详解Mysql中如何查看Sql语句的执行时间

直接使用show variables命令会将所有变量展示出来,太多了,我们不方便查看

就可以使用模糊查询了,用like将profiling挑选出来

一般没有开启都为off

?
1
show variables like 'profiling';

图文详解Mysql中如何查看Sql语句的执行时间

3、set profilling=1,开启profiling

?
1
show variables like 'profiling';

图文详解Mysql中如何查看Sql语句的执行时间

这样我们的mysql就可以查看sql语句的执行时间

三、不同查询的执行时间

?
1
2
3
4
select * from t_users;    
select id,username,password,real_name,sex,birth,mobile,head_pic from t_users;
 
select * from t_users where username like 'whj';

图文详解Mysql中如何查看Sql语句的执行时间

三种查询的时间对比

图文详解Mysql中如何查看Sql语句的执行时间

结论:

sql 在使用select语句或者使用其它语句时,直接使用*和把所有的字段弄上去查询,性能有很大差距,所以我们平时写查询最好用字段写上

总结

到此这篇关于mysql中如何查看sql语句的执行时间的文章就介绍到这了,更多相关mysql查看sql语句执行时间内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_44385486/article/details/121914768

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部