mysql 常用性能查询方法

Posted year12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 常用性能查询方法相关的知识,希望对你有一定的参考价值。

1、 show processlist;
2、select * from information_schema.innodb_trx\G
3、SELECT user, host, time, command, state,left(info,4000) FROM information_schema.processlist WHERE command<>‘Sleep‘ and command<>‘Daemon‘ and time>0;
4、 show engine innodb status\G
5、explain

 

以上是关于mysql 常用性能查询方法的主要内容,如果未能解决你的问题,请参考以下文章

如何提高查询性能?

MySQL性能优化以及常用命令

一文简述-MySql性能查询常用语句

mysql之性能指标查询

mysql性能优化-自我总结

MySQL查看数据库性能常用命令