0 votes
in Sql by
Where MyISAM table will be stored and also give their formats of storage?

1 Answer

0 votes
by
Each MyISAM table is stored on disk in three formats:

The ‘.frm’ file stores the table definition
The data file has a ‘.MYD’ (MYData) extension
The index file has a ‘.MYI’ (MYIndex) extension
...