现代犀牛

文章
4
资源
0
加入时间
3年0月21天

MySQL如何快速定位慢查询的语句

①首先了解MySQL数据库的运行状态查询情况        使用命令show [session|gobal] status      例子:show status like 'uptime';    【查询当前使用MySQL数据库的时间长度】        show status like 'com_select';    【查询当前使用select语句的次数】        sh