输入banner图图片脚本导航/分类

Mysql数据进行并发锁定_MySQL

mysql> LOCK TABLES real_table WRITE, insert_table WRITE;
mysql> insert into real_table select * from insert_table;
mysql> delete from insert_table;
mysql> UNLOCK TABLES;