标签: locking mysql-5.6
您要锁定三个表a,b和c,并发出以下语句:
mysql> LOCK TABLES a READ; mysql> LOCK TABLES b READ; mysql> LOCK TABLES c READ;
现在锁定了哪些表?