问题
Does a MySQL MyISAM table gets locked when records are deleted from it?
回答1:
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
来源:https://stackoverflow.com/questions/1951161/mysql-myisam-table-locking