首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

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

2012-09-28 
如何快速删除大量记录~?(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;

?

?

热点排行