how to find table lock and row lock in mysql

Solutions on MaxInterview for how to find table lock and row lock in mysql by the best coders in the world

showing results for - "how to find table lock and row lock in mysql"
Lucia
21 Oct 2018
1SHOW OPEN TABLES WHERE `Table` LIKE '%[TABLE_NAME]%' AND `Database` LIKE '[DBNAME]' AND In_use > 0;
2