php数据库插入代码
时间:2008-03-18 来源:7717060
create table tmp select * from yourtablename where id >109;
delete from yourtablename where id >109;
alter table yourtablename auto_increment = 110;
insert into yourtablename select * from tmp;
drop table tmp;
delete from yourtablename where id >109;
alter table yourtablename auto_increment = 110;
insert into yourtablename select * from tmp;
drop table tmp;
相关阅读 更多 +
排行榜 更多 +