本文介绍了MySQL MyISAM表锁定的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从中删除记录时,MySQL MyISAM表是否被锁定?

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

推荐答案

MyISAM表支持表级锁定,是的,在删除(或插入和更新)记录时采用写锁定.

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

这篇关于MySQL MyISAM表锁定的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 07:29
查看更多