What is InnoDB and MyISAM in MySQL?

user130561 picture user130561 · Sep 29, 2010 · Viewed 87.5k times · Source

What is InnoDB and MyISAM in MySQL ?

Answer

Siva  picture Siva · Mar 24, 2011

InnoDB and MYISAM, are storage engines for MySQL.

These two differ on their locking implementation: InnoDB locks the particular row in the table, and MyISAM locks the entire MySQL table.

You can specify the type by giving MYISAM OR InnoDB while creating a table in DB.