配置mysql
# 打开日志
general_log=1
# 将日志记录到mysql的table中
log_output=TABLE
上面2个配置参数的mysql文档链接
http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_general_log
http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_log_output
重启mysql,然后运行
select * from mysql.general_log;
就能看到所有运行的SQL语句了
************************************************************************
查询mysql中的某个值
SHOW VARIABLES LIKE 'XXXX'
# 打开日志
general_log=1
# 将日志记录到mysql的table中
log_output=TABLE
上面2个配置参数的mysql文档链接
http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_general_log
http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html#sysvar_log_output
重启mysql,然后运行
select * from mysql.general_log;
就能看到所有运行的SQL语句了
************************************************************************
查询mysql中的某个值
SHOW VARIABLES LIKE 'XXXX'