求一语句,把sql2005中的数据表aa导出成excel(aa.xls),谢了,在线等
求一语句,把sql2005中的数据表aa导出成excel(aa.xls),谢了求一语句,把sql2005中的数据表aa导出成excel(aa.xls),谢了求一语句,把sql2005中的数据表aa导出成excel(aa.xls),谢了求一语句,把sql2005中的数据表aa导出成excel(aa.xls),谢了求一语句,把sql2005中的数据表aa导出成excel(aa.xls),谢了
------解决方案--------------------可以试试
sql = "select top 65535 * into [Excel 8.0;database= " + Server.MapPath( ". ") + @ "\aa.xls].[Sheet1] from aa ";
//注意,未做测试
------解决方案--------------------insert into
OpenDataSource( 'Microsoft.Jet.OLEDB.4.0 ', 'Data Source= "d:\aa.xls ";User ID=Admin;Password=;Extended properties=Excel 8.0 ')...[sheet1$]
select top 65535 * from a
=======前提是excel要先存在,且有足够的权限