解决MySQL数据库锁问题

SELECT

t.*

FROM

information_schema.INNODB_TRX t

WHERE

trx_lock_structs <> '0'

OR trx_rows_locked <> '0'

OR trx_rows_modified <> '0'

OR trx_tables_in_use <> '0';

查询未提交的事务,查看其中的trx_mysql_thread_id,在mysql中用命令kill 杀掉锁行或锁表的线程。

你可能感兴趣的:(解决MySQL数据库锁问题)