MySQL目前正在执行的sql,用于排查长时间占用资源的sql

选择表

use information_schema;

查看当前正在执行的sql信息

select Id,User,Host,db,Time,Info from information_schema.`PROCESSLIST` where info is not null;

杀死其中某一个占用资源的sql使用上面的id

kill id;

你可能感兴趣的:(mysql)