MySQL 进程查看

-- 查看正在执行的sql进度
select * from information_schema.processlist;

-- 杀进程
kill 进程ID

-- 查看临时表的大小
show variables like '%tmp%';

原文地址:https://www.cnblogs.com/minss/p/14529335.html