大量殺戮 操作は時間を節約します。 MySql自体でそれを行います:
これらのコマンドを実行します
mysql> select concat('KILL ',id,';') from information_schema.processlist
where user='root' and time > 200 into outfile '/tmp/a.txt';
mysql> source /tmp/a.txt;
---------edit------------
ファイルに保存したくない場合は、variable
に保存してください
コマンドプロンプトで実行するだけです
> out1=$(mysql -B test -uroot -proot --disable-column-names -e "select concat('KILL ',id,';') from information_schema.processlist where user='root' and time > 200;")
> out2= $(mysql -B test -uroot -proot --disable-column-names -e "$out1")