呵呵,也有比较简单的方法的,你可以先生成一个与原表一样的临时表,删除
原表,再由临时表生成你要的空表,最后在删除临时表。
下面的东东在Access中测试通过,不过你用的时候注意一下自增字段,
可能还得用SQL改一下字段类型。
//建测试表:
Create Table mytest(
ID Integer not null primary key,
Name Varchar(50)
)
//加临时数据
Insert into MyTest(ID,Name) Values(1,'张三')
Insert into myTest(ID,Name) Values(2,'李四')
//生成临时表
Select * into mytemp from mytest where true = false
//删除原表
Drop table Mytest;
//生成空表
Select * into Mytest from myTemp where true =false
//删除临时表
Drop table myTemp;