标签: mysql
是否有可能一次性杀死所有mySQL进程,除了一个进程ID?
答案 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;