MySQL 數據庫 默認引擎 不支持事務 查詢速度更快一些 只支持 表鎖 mysql
create table t1(id int) engine = myisam
支持事務 支持行鎖 加 表鎖sql
create table t1(id int) engine = innodb
/etc/my.cnf [mysqld] default-storage-engine=INNODB innodb_file_per_table=1