how to customize `show processlist` in mysql?

前端 未结 6 1074
孤城傲影
孤城傲影 2021-01-29 18:11

I want to order by Time,but seems no way to do that ?

mysql> show processlist;
+--------+-------------+--------------------+------+---------+--------+--------         


        
6条回答
  •  太阳男子
    2021-01-29 18:40

    The command

    show full processlist
    

    can be replaced by:

    SELECT * FROM information_schema.processlist
    

    but if you go with the latter version you can add WHERE clause to it:

    SELECT * FROM information_schema.processlist WHERE `INFO` LIKE 'SELECT %';
    

    For more information visit this

提交回复
热议问题