MySQL查询当前执行的sql,kill当前执行的sql

查询当前执行的sql:

select * from information_schema.`PROCESSLIST` where info is not null;

kill当前执行的sql:

kill id

你可能感兴趣的:(sql,mysql,数据库)