Turn on log all queries to table
SET global general_log = ‘ON’; SET global log_output = ‘table’;
View the log
select * from mysql.general_log
Turn off log all queries to table
SET global general_log = ‘OFF’;
Turn on log all queries to table
SET global general_log = ‘ON’; SET global log_output = ‘table’;
View the log
select * from mysql.general_log
Turn off log all queries to table
SET global general_log = ‘OFF’;