Login
Remember
Register
Ask a Question
Where MyISAM table will be stored and also give their formats of storage?
0
votes
asked
Jan 14, 2024
in
Sql
by
AdilsonLima
Where MyISAM table will be stored and also give their formats of storage?
mysql-interview-qeustions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14, 2024
by
AdilsonLima
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
...