<怎么快速删除大量记录>

如何快速删除大量记录~?(1) create table xxxtemp as select * from xxx where conditions?(2) drop t

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

?

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

?

(2) drop table xxx;

?

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

?

?