mySQL:杀死除一个进程id之外的所有进程

时间:2013-05-27 22:52:20

标签: mysql

是否有可能一次性杀死所有mySQL进程,除了一个进程ID?

1 个答案:

答案 0 :(得分:4)

你可以使用information_schema表,这有点麻烦,但它有效;)

mysql> select concat('KILL ',id,';') from information_schema.processlist
where id != '1234' into outfile '/tmp/foo.txt';

mysql> source /tmp/foo.txt;