其他
小于 1 分钟编程语言数据库mysql
缓冲池

配置文件
linux 系统的MYSQL配置文件是 my.cnf , windows 配置文件:C:\ProgramData\MySQL\MySQL Server 5.7\my.ini
设置自动提交、手动提交
系统默认自动提交,即执行一个SQL语句后自动提交,通过设置 autocommit = 0 将自动提交更改为手动提交,即SQL执行完毕后要再次执行 commit 进行提交
set @@autocommit=0;
select @@autocommit;
安全加固

新系统设置
# 设置root用户密码
grant all privileges on *.* to root@'%' identified by 'chanchaw' ;
flush privileges;
