MySQL Storage Engines
MySQL has the following storage engines or table types:
MyISAM
InnoDB
HEAP
MERGE
CSV
BLACKHOL
Out of these all mysql storage engines, two engines are most important & these are used by developers frequently as well.
The first one is InnoDB mysql engine; it supports transaction and table locking. And another one is ‘MyISAM’, it supports full text search support using this we […]