日期:2014-05-16  浏览次数:20428 次

<如何快速删除大量记录>~

?

(1) create table xxxtemp as select * from xxx where <conditions>

?

(2) drop table xxx;

?

(3) create table xxx as select * from xxxtemp;

?

?