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

SQL中隔行编号的操作

时间:2020-02-14 00:48:59      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:lse   case when   null   ber   end   编号   row   over   xxx   

一般在sql中进行排序编号的时候都是:

row_number() over(order by xxx)

但是有时候某些行不想让他们参与排序,这时候可以:

row_number() over(order by(case when xxx then xxx else null end))

注意case when是写在order by函数中

SQL中隔行编号的操作

标签:lse   case when   null   ber   end   编号   row   over   xxx   

原文地址:https://www.cnblogs.com/stAr-1/p/12305762.html

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