MyISAM is the default table that is based on the sequential access method.
- HEAP is the table that is used for fast data access but data will be lost if the table or system crashes.
- InoDB is the table that supports transactions using the COMMIT and ROLL BACK commands.
- BDB can support transactions similar to InoDB but the execution is slower.