MySQL relational database
Last updated
Last updated
Transaction support
Structured data
one .frm
file per table: store table metadata, e.g. table definition
table data is stored as a file in disk
in InnoDB engine, multiple tales can share a file(.ibdata
), user can also config one table per file(.ibd
).
store a file in disk, supported in Storage Engine layer
B+ Tree
Single and multiple columns index
MyISAM stores address to data, i.e. index file and data file stored separately.
InnoDB stores data as index file. Secondary index refers to primary index.