Home »

What is the purpose of the following files having extensions: frm, myd, and myi? What these files contain?

Question ListCategory: PHPWhat is the purpose of the following files having extensions: frm, myd, and myi? What these files contain?
jessica537 author asked 8 years ago
1 Answers
alisataylore190 author answered 8 years ago

In MySQL, the default table type is MyISAM.Each MyISAM table is stored on disk in three files.
The files have names that begin with the table name and have an extension to indicate the file type.
The “.frm’ file stores the table definition.
The data file has a “.MYD’ (MYData) extension.
The index file has a “.MYI’ (MYIndex) extension,

Please login or Register to Submit Answer