一、什么是Table Metadata Lock在MySQL以前的版本中,存在这样一个bug:Description:If user1 has an active transaction on a table and then user2 drops this table, then user1 does COMMIT, then in the binlog we have so...
rename命令用于修改表名。rename命令格式:rename table 原表名 to 新表名;例如,在表MyClass名字更改为YouClass: mysql> rename table MyClass to YouClass;当你执行 RENAME 时,你不能有任何锁定的表或活动的事务。你同样也必须有对原初表的 ALTER 和 DROP 权限,以及对新...