导航

MySQL 之管理脚本

Posted on 2018-10-23 10:45  许爱琪  阅读(231)  评论(0编辑  收藏  举报

Mysql中查看每个IP的连接数

select SUBSTRING_INDEX(host,':',1) as ip , count(*) from information_schema.processlist group by ip;