2024年10月09日 建站教程
如何利用mysql语法查询关于“锁的事务”,下面web建站小编给大家简单介绍一下具体方法!
确定是否锁表
select * from information_schema.innodb_locks;
查询正在锁的事务
select * from information_schema.innodb_locks;
查询等待锁的事务
select * from information_schema.innodb_lock_waits;
查询未提交的事务
select * from information_schema.innodb_trx
查询所有的线程
select * from information_schema.PROCESSLIST;
本文链接:http://so.lmcjl.com/news/14986/