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

oracle知识总结

时间:2017-11-02 15:48:18      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:ble   3.4   sel   第一个   select   总结   小数点   table   ber   

一、特殊函数

  1:NVL函数

    NVL(str1,str2),如果oracle第一个参数为空那么显示第二个参数的值,如果第一个参数的值不为空,则显示第一个参数本来的值;

    eg:select nvl(t.a, 0) from table t;

  2:NVL2函数

    NVL2(str1,str2, str3),如果该函数的第一个参数为空那么显示第二个参数的值,如果第一个参数的值不为空,则显示第三个参数的值;

    eg:select nvl(t.a, 1, -1) from table t;

  3:TRUNC函数

    3.1:trunc for date

      select trunc(sysdate) from dual; --系统日期当天2017/11/2  等价于 select trunc(sysdate, ‘dd‘) from dual;

      select trunc(sysdate, ‘yyyy‘) from dual; --今年第一天2017/1/1

      select trunc(sysdate, ‘mm‘) from dual; --这个月第一天2017/11/1

      select trunc(sysdate, ‘d‘) from dual; --本周第一天

    3.2:trunc for number

      select trunc(123.456) from dual; --123 直接从小数点截取,等价于select trunc(123.456, 0) from dual;

      

      

oracle知识总结

标签:ble   3.4   sel   第一个   select   总结   小数点   table   ber   

原文地址:http://www.cnblogs.com/wh12397/p/7772270.html

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