首页 > 技术文章 > 20.mysql查看sql执行时间

Nick-Hu 2018-03-06 17:22 原文

查看执行时间

1 show profiles; 
2 show variables;查看profiling 是否是on状态; 
3 如果是off,则 set profiling = 1; 
4 执行自己的sql语句; 
5 show profiles;就可以查到sql语句的执行时间;

推荐阅读