mysql查看表被哪个进程锁住_mysql 查看锁表解锁
-- mysql 查看锁表解锁-- 查看那些表锁到了 show open tables where in_use > 0;-- 查看进程号 show processlist;-- 删除进程 kill 1085850;--查询是否锁表show open tables where in_use > 0;show open tables;-- 锁定数据表,避免在备份过程中,表被更...