关于mysql:MySQL常用命令

0次阅读

共计 130 个字符,预计需要花费 1 分钟才能阅读完成。

1、查看慢查问超时工夫值
use performance_schema;
select * from variables_by_thread where variable_name = 'long_query_time';
2、查看 MySQL 以后线程
show processlist;
正文完
 0