其实Oracle 的排序是很有意思的,接下来我们就主要来介绍Oracle 有趣排序,如果你对Oracle 的排序很感兴趣的话,以下就是文章的具体内容介绍,希望你浏览完以下的内容会有所收获。
按拼音排序 (系统默认)
select*fromperexlorderbynlssort (danwei,'NLS_SORT=SCHINESE_PINYIN_M');
按部首排序
select*fromperexlorderbynlssort(danwei,'NLS_SORT=SCHINESE_STROKE_M');
按笔画排序
select*fromperexlorderbynlssort(danwei,'NLS_SORT=SCHINESE_RADICAL_M');
排序后获取***行数据
select*from(select*fromperexlorderbynlssort (danwei,'NLS_SORT=SCHINESE_PINYIN_M'))Cwhererownum=1
降序排序
select*fromperexlorderbyzongrshudesc
在Oracle 有趣排序中升序排序以下所示
select*fromperexlorderbyzongrshuasc
将nulls始终放在最前
select*fromperexlorderbydanweinullsfirst
将nulls始终放在***
select*fromperexlorderbydanweidescnullslast
decode函数比nvl函数更强大,同样它也可以将输入参数为空时转换为一特定值
select*fromperexlorderbydecode(danwei,null,'单位是空',danwei)
标准的rownum分页查询使用方法
select*from(selectc.*,rownumrnfrompersonnelc)wherern>=1andrn<=5
在Oracle语句rownum对排序分页的解决方案
但是如果, 加上order by 姓名 排序则数据显示不正确
select*from(selectc.*,rownumrnfrompersonnelcorderby出生年月)wherern>=1andrn<=5
解决方法,再加一层查询,则可以解决
select*from(selectrownumrn,t.*from (select姓名,出生年月frompersonnelorderby出生年月desc)t) wherern>=1andrn<=5
如果要考虑到效率的问题,上面的还可以优化成(主要两者区别)
select*from(selectrownumrn,t.*from (select姓名,出生年月frompersonnelorderby出生年月desc) twhererownum<=10)wherern>=3
nvl函数可以将输入参数为空时转换为一特定值,下面就是当单位为空的时候转换成“单位是空”
select*fromperexlorderbynvl(danwei,'单位是空')
相关文章
标签:Oracle