1、查看正在执行的SQL
use information_schema;
show processlist;
select * from information_schema.`PROCESSLIST` where info is not null;
2、开启日志模式,记录所有SQL语句执行记录
show variables like 'log_output';
set global log_output='table';
set global log_output='file';
show variables like 'general_log_file';
set global general_log_file='tmp/general.log';
show variables like 'general_log';
set global general_log=on;
set global general_log=off;
SELECT * from mysql.general_log ORDER BY event_time DESC;
truncate table mysql.general_log;
cat /tmp/general.log
转至:https://blog.51cto.com/dusthunter/2551224