ORACLE笔记-琐碎知识

1、对有有索引的列进行函数操作及||操作会使索引无效,在SQL中应尽量避免(在ORACLE9i,11g下测试)
例如 select t.* from ch_info_commission_req_detail t where t.requestid ='12345'会使用到requestid列上的索引,
而select t.* from ch_info_commission_req_detail t where t.requestid||'' ='12345'就会使索引无效
2、在对查询结果进行排序的时候,如果结果集及表中有相同的字段名,此时如果没有指定按表或结果集的字段排序,oracle会优先使用查询的结果集中的字段来排序,如果找不上才会找表中的字段

使用的是结果集中的字段名来排序
select rownum rowindex,t.mobilenumber mobile, substr(t.mobilenumber,1,5) mobilenumber
from ch_info_commission_req_detail t
where t.requestid = '03251130105171111'
order by mobilenumber asc;
查询结果--从结果还可以发现,rownum是在查询结果查出来后就生成了
ROWINDEX MOBILE MOBILENUMBER
---------- -------------------------------- ------------
1 9800778741 98007
2 9800778742 98007
3 9800778743 98007
8 9800778748 98007
5 9800778745 98007
6 9800778746 98007
7 9800778747 98007
4 9800778744 98007

指定按表中的字段名进行排序
select rownum rowindex,t.mobilenumber mobile, substr(t.mobilenumber,1,5) mobilenumber
from ch_info_commission_req_detail t
where t.requestid = '03251130105171111'
order by t.mobilenumber asc;
查询结果
ROWINDEX MOBILE MOBILENUMBER
---------- -------------------------------- ------------
1 9800778741 98007
2 9800778742 98007
3 9800778743 98007
4 9800778744 98007
5 9800778745 98007
6 9800778746 98007
7 9800778747 98007
8 9800778748 98007
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值