<如何快速删除大量记录>~
?
(1) create table xxxtemp as select * from xxx where <conditions>
?
(2) drop table xxx;
?
(3) create table xxx as select * from xxxtemp;
?
?
发布时间: 2012-09-28 00:03:35 作者: rapoo
<如何快速删除大量记录>~
?
(1) create table xxxtemp as select * from xxx where <conditions>
?
(2) drop table xxx;
?
(3) create table xxx as select * from xxxtemp;
?
?