mysql查询锁表
时间: 2023-06-21 19:18:57 浏览: 93
mysql读写锁演示案例
MySQL中的锁表有两种方式,一种是表级锁,另一种是行级锁。
如果要查询表级锁,可以使用以下语句:
```
show open tables where in_use > 0;
```
如果要查询行级锁,可以使用以下语句:
```
select * from information_schema.innodb_locks;
```
这些语句将返回当前正在使用的表或行上的锁定信息。另外,还可以使用以下语句查看当前正在等待锁定的事务:
```
select * from information_schema.innodb_lock_waits;
```
阅读全文