create TEMPORARY table tmptable like table; insert into tmptable select * from table order by id desc limit 1; alter table tmptable drop id; insert into table select '',tmptable.* from tmptable;
CREATE TEMPORARY TABLE chan2 ENGINE=MEMORY SELECT * FROM channel WHERE chanid=21051; UPDATE chan2 SET chanid=21109; ## Change the unique key ## Update anything else that needs to be updated. INSERT INTO channel SELECT * FROM chan2; DROP TABLE chan2;
第 1 页 / 共 1 页
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。