-- 列出MySQL服务器运行各种状态值:
show global status;
-- 查询MySQL服务器配置信息:
show variables;
-- 慢查询
show variables like '%slow%';
show global status like '%slow%';
-- 慢查询总数量
show global status like '%Slow_queries%';
-- 列出MySQL服务器运行各种状态值:
show global status;
-- 查询MySQL服务器配置信息:
show variables;
-- 慢查询
show variables like '%slow%';
show global status like '%slow%';
-- 慢查询总数量
show global status like '%Slow_queries%';
本文标题:MySQL慢查询优化
本文链接:https://www.haomeiwen.com/subject/fckpiftx.html
网友评论