时间:2021-07-01 10:21:17 帮助过:26人阅读
第一种
show processlist;
找到锁进程,kill id ;
第二种
mysql>UNLOCK TABLES;
锁表
锁定数据表,避免在备份过程中,表被更新
mysql>LOCK TABLES tbl_name READ;
为表增加一个写锁定:
mysql>LOCK TABLES tbl_name WRITE;
MYSQL 解锁与锁表
标签:tables kill tab list 写锁 show nbsp proc bsp