1、查询是否有被锁的表show open tables where in_use > 0;
2、查询被锁表的进程show processlist;
或
show full processlist;
3、杀死被锁的表的进程Id来解锁kill 进程Id;