Mysql 全局操作

查看事务隔离级别:show variables like 'transaction_isolation';

查看超过60s的事务列表:select * from information_schema.innodb_trx where TIME_TO_SEC(timediff(now(),trx_started))>60;

原文地址:https://www.cnblogs.com/baokang/p/15316789.html