浏览文章

文章信息

Mysql查询最耗时查询 12670

SQL:

select a.id,a.time from information_schema.processlist a where user like 'root' order by a.time desc limit 10;

表字段信息:

desc information_schema.processlist;


原创