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

猜你喜欢

转载自www.cnblogs.com/zhanzhijie/p/9111346.html