Types of Files of MySQL MyISAM
1 min readMar 23, 2019
There are 3 unique types of files in MySQL MyISAM, .FRM, .MYD, .MYI
$table_name.FRM
Column and structure of respective table are stored.
$table_name.MYD
Respective table data is stored.
$table_name.MYI
Indexes of respective table data are stored.