# MySQL 表死锁解决方案

  1. 查询information_schema.innodb_trx
select * from information_schema.innodb_trx;
1
  1. 然后执行kill trx_mysql_thread_id
kill 线程ID
1
Last Updated: 3 years ago