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

sql2000用openrowset可以为查询出来的excel数据加一个在excel表中第几行的信息吗,该如何解决

2012-05-28 
sql2000用openrowset可以为查询出来的excel数据加一个在excel表中第几行的信息吗sql2000用openrowset可以

sql2000用openrowset可以为查询出来的excel数据加一个在excel表中第几行的信息吗
sql2000用openrowset可以为查询出来的excel数据加一个在excel表中第几行的信息吗,excel表中没有序号的列

[解决办法]

SQL code
select identity(int,1,1) rn,* into #tfrom openrowset...select * from #t 

热点排行