mysql的存储引擎主要有:MyISAM和InnoDBmysql
MyISAM和InnoDB的主要区别:InnoDB支持事务和参照完整性(即为主键约束,数据库的主键和外键类型必定要一致)sql
存储引擎是针对表而言而非针对数据库而言的,这点很重要!咱们能够根据不一样的表选择不一样的存储引擎,如mysql数据中,默认的mysql这个表,存储引擎就是MyISAN数据库
stackoverflow上的一段话:session
The main differences between InnoDB and MyISAM ("with respect to designing a table or database" you asked about) are support for "referential integrity" and "transactions".并发
If you need the database to enforce foreign key constraints, or you need the database to support transactions (i.e. changes made by two or more DML operations handled as single unit of work, with all of the changes either applied, or all the changes reverted) then you would choose the InnoDB engine, since these features are absent from the MyISAM engine.app
Those are the two biggest differences. Another big difference is concurrency. With MyISAM, a DML statement will obtain an exclusive lock on the table, and while that lock is held, no other session can perform a SELECT or a DML operation on the table.(ide
另外一个大的区别是并发。使用MyISAM,DML语句将得到对表的排它锁,而且在该锁被保持时,没有其余会话能够对表执行SELECT或DML操做。ui
)this
Those two specific engines you asked about (InnoDB and MyISAM) have different design goals. MySQL also has other storage engines, with their own design goals.(每一个存储引擎都有本身的设计目标,根据实际状况选择适合本身的存储引擎)spa
So, in choosing between InnoDB and MyISAM, the first step is in determining if you need the features provided by InnoDB. If not, then MyISAM is up for consideration.
A more detailed discussion of differences is rather impractical (in this forum) absent a more detailed discussion of the problem space... how the application will use the database, how many tables, size of the tables, the transaction load, volumes of select, insert, updates, concurrency requirements, replication features, etc.
The logical design of the database should be centered around data analysis and user requirements; the choice to use a relational database would come later, and even later would the the choice of MySQL as a relational database management system, and then the selection of a storage engine for each table.
参考连接:
https://support.rackspace.com/how-to/mysql-engines-myisam-vs-innodb/