1. 首页
  2. 移动开发
  3. webOS
  4. 批量杀死MySQL连接的四种方法详解

批量杀死MySQL连接的四种方法详解

上传者: 2020-12-17 05:00:48上传 PDF文件 39.49KB 热度 17次
方法一 通过information_schema.processlist表中的连接信息生成需要处理掉的MySQL连接的语句临时文件,然后执行临时文件中生成的指令。 代码如下: mysql> select concat(‘KILL ‘,id,’;’) from information_schema.processlist where user=’root’; +————————+ | concat(‘KILL ‘,id,’;’) | +————————+ | KILL 3101; | | KILL 2946; | +————————+ 2 r
用户评论