mysql> status;
mysql> show processlist;
mysql> use information_schema;
mysql> select * from PROCESSLIST where info is not null;
以上是可能用到的sql
找到具体的执行的sql的 id, 可以kill。
mysql> status;
mysql> show processlist;
mysql> use information_schema;
mysql> select * from PROCESSLIST where info is not null;
以上是可能用到的sql
找到具体的执行的sql的 id, 可以kill。