当前位置: 代码迷 >> Sql Server >> 取得数据集后,怎么读取指定某一行
  详细解决方案

取得数据集后,怎么读取指定某一行

热度:44   发布时间:2016-04-27 16:28:55.0
取得数据集后,如何读取指定某一行?
在取得数据集后,有多行记录,没有任何索引,
如何才能取出我指定想要的一行?

------解决方案--------------------
select id=identity(int,1,1),* into # from 表
select * from # where id=2
drop table #
  相关解决方案