文章摘要:mysql怎么查询主机地址 如何查看mysql主机地址
mysql查询主机地址的方法 打开mysql输入以下命令查询即可。 select SUBSTRING […]
mysql查询主机地址的方法
打开mysql输入以下命令查询即可。
select SUBSTRING_INDEX(host,':',1) as ip , count(*) from information_schema.processlist group by ip;
文章摘要:mysql怎么查询主机地址 如何查看mysql主机地址
mysql查询主机地址的方法 打开mysql输入以下命令查询即可。 select SUBSTRING […]
mysql查询主机地址的方法
打开mysql输入以下命令查询即可。
select SUBSTRING_INDEX(host,':',1) as ip , count(*) from information_schema.processlist group by ip;