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 常用性能查询方法的主要内容,如果未能解决你的问题,请参考以下文章