MySQL 常用命令

查看是否开启自动提交:show variables like 'autocommit';
开启自动提交:set autocommit = 1;
开始事务:begin;
提交事务 :commit;

查询binlog 日志是否开启:show variables like '%log_bin%';
查询慢日志是否开启:show variables like '%slow_query%';

你可能感兴趣的:(MySQL 常用命令)