MySQL comparison of InnoDB and MyISAM

Source: Internet
Author: User

InnoDB1) Although the user is not supported to create a clustered index, INNODB will establish a clustered index on the primary key. If you do not specify a primary key, InnoDB replaces it with an index that has a unique and non-null value. If such an index does not exist, InnoDB defines a hidden primary key and then establishes a clustered index on it. In general, the DBMS stores the actual data in the form of a clustered index, which is the basis for other two-level indexes. The use of self-increasing primary key in InnoDB can achieve better efficiency. 2) using row-level locks3) Support concurrency4) Support Transactions5) Better safety than MyISAM   MyISAM1) The user is not supported to create a clustered index and does not use the clustered index store itself. 2) Only table-level locks are supported3) does not support transactions4) Query efficiency is higher than InnoDB5) Support full-text indexing, spatial indexing
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.