码迷,mamicode.com
首页 > 数据库 > 详细

sql查询时加上行号

时间:2015-12-24 10:37:54      阅读:317      评论:0      收藏:0      [点我收藏+]

标签:

sql查询的时候有时候要加上行号,这里做个备忘~

1(建议采用),
select row_number() over (order by col1) as no,newid() as id,*
from Table1
order by col1

2,
select no=identity(int,1,1),newid() as id,* 
into  #temptable From  Table1
order by col1
Select * From #temptable
Drop Table #temptable

3,
SELECT (SELECT sum(1)  FROM Table1
 WHERE col1 <= a.col1) AS no, *  
 FROM Table1 a

sql查询时加上行号

标签:

原文地址:http://www.cnblogs.com/zylong/p/5072200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!