美文网首页
mysql慢查询 --- 2021-10-28

mysql慢查询 --- 2021-10-28

作者: 一位先生_ | 来源:发表于2021-10-28 10:27 被阅读0次

    进入mysql控制台,使用命令查看慢sql,进行定位分析:


    image.png
    set profiling=1;
    
    show profiles;
    
    use test;
    
    select * from a;
    
    show profiles;
    
    show profile for query 2;
    

    相关文章

      网友评论

          本文标题:mysql慢查询 --- 2021-10-28

          本文链接:https://www.haomeiwen.com/subject/aaamaltx.html