标签:inf info user format sch str proc code lis
select * from information_schema.processlist show full processlist
# 获得
select user,substring_index(host,‘:‘,1) as ip,count(1) as total from information_schema.processlist group by ip order by total desc;
标签:inf info user format sch str proc code lis
原文地址:https://www.cnblogs.com/igoodful/p/11681595.html