views:

259

answers:

1

Does a MySQL MyISAM table gets locked when records are deleted from it?

+2  A: 

MyISAM tables supports table level locking, and yes, a write lock is employed when deleting (or insert & updating) records.

For more info, see Internal Locking Methods

OMG Ponies