0 votes
in Sql by
What is the difference between MyISAM Static and MyISAM Dynamic?

1 Answer

0 votes
by

In MyISAM static all the fields will have fixed width. The Dynamic MyISAM table will have fields like TEXT, BLOB, etc. to accommodate the data types with various lengths.

MyISAM Static would be easier to restore in case of corruption.

...