I want to order by Time,but seems no way to do that ?
mysql> show processlist; +--------+-------------+--------------------+------+---------+--------+--------
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:
WHERE
SELECT * FROM information_schema.processlist WHERE `INFO` LIKE 'SELECT %';
For more information visit this