数据库
首页 > 数据库> > mysql如何查看SQL语句的执行时间

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

作者:互联网

查看执行时间步骤

1.show profiles;

2.show variables; 查看profiling 是否是on状态;

3.如果是off,则执行命令  set profiling=1;

4.执行SQL语句

5.show profiles;  就可以查询到SQL语句的执行时间


数据库设计:

支持纯数字以及特殊字符当数据库的名字

$createdatabase=Db::query('create database `'.$projectdbconfig.'`');

注意:记得把数据库名字用``这样的符号引起来

标签:语句,profiling,show,数据库,mysql,profiles,SQL
来源: https://www.cnblogs.com/hd92/p/14850854.html