Mysql加鎖與實踐

1. 鎖分類 innodb中的鎖分爲S鎖,即共享鎖,另一種爲X鎖,排它鎖,比如: 共享鎖(S) select * from supplier where id=5 lock in share mode; 排他鎖(X) select * from supplier where id=5 for update; 或者insert,delete,update語句,這都是排他鎖 兼容性 這兩種鎖的兼容如下
相關文章
相關標籤/搜索