5.2 數據庫引擎

引擎

mysaim

MySQL 數據庫 默認引擎
  不支持事務
  查詢速度更快一些
  只支持 表鎖 mysql

create table t1(id int) engine = myisam


innodb

  支持事務
  支持行鎖 加 表鎖sql

create table t1(id int) engine = innodb

 

配置文件中指定

/etc/my.cnf
[mysqld]
default-storage-engine=INNODB
innodb_file_per_table=1
相關文章
相關標籤/搜索