美文网首页
常用 Oracle 函数

常用 Oracle 函数

作者: GEvening | 来源:发表于2019-04-24 11:42 被阅读0次

    1、流程控制函数 \color{red}{decode()}


      主要作用:将查询结果翻译成其他值(即以其他形式表现出来)
      使用方法:

        Select decode(columnname,值1,翻译值1,值2,翻译值2,…值n,翻译值n,缺省值)
        From talbename
        Where …
    

      其中columnname为要选择的table中所定义的column。


      含义解释:
      decode(条件,值1,翻译值1,值2,翻译值2,…值n,翻译值n,缺省值)的理解如下:

        if (条件==值1)
          then    
        return(翻译值1)
        elsif (条件==值2)
          then    
        return(翻译值2)    
        ……
        elsif (条件==值n)
          then    
      return(翻译值n)
        else    
      return(缺省值)
        end if
    

    注:其中缺省值可以是你要选择的column name 本身,也可以是你想定义的其他值,比如Other等;


    举例说明:

    现定义一table名为output,其中定义两个column分别为monthid(var型)和sale(number型),若sale值=1000时翻译为D,=2000时翻译为C,=3000时翻译为B,=4000时翻译为A,如是其他值则翻译为Other;

    SQL如下:

    Select monthid,decode(sale,1000,'D',2000,'C',3000,'B',4000,'A',’Other’) sale from output
    

    特殊情况:

    若只与一个值进行比较

    Select monthid ,decode(sale, NULL,‘---’,sale) sale from output
    

    另:decode中可使用其他函数,如nvl()函数或sign()函数等;


    2、比较大小函数 \color{red}{sign()}
      函数语法:sign(n)
      函数说明:取数字n的符号,大于0返回1,小于0返回-1,等于0返回0

    示例:

    1、select sign( 100 ),sign(- 100 ),sign( 0 ) from dual;
    
      SIGN(100) SIGN(-100) SIGN(0)
      ———- ———- ———-
      1         -1         0
    
    2、a=10,b=20 
      则sign(a-b)返回-1
    

    3、替换NULL值函数 \color{red}{nvl()}
      函数语法:NVL(EXPR1,EXPR2):若EXPR1是NULL,则返回EXPR2,否则返回EXPR1.

        SELECT NAME,NVL(TO_CHAR(COMM),'NOT APPLICATION') FROM TABLE1;
    

    如果用到decode函数中就是

        select monthid,decode(nvl(sale,6000),6000,'NG','OK') from output
    

    sign()函数根据某个值是0、正数还是负数,分别返回0、1、-1,

    如果取较小值就是

        select monthid,decode(sign(sale-6000),-1,sale,6000) from output
    

    即达到取较小值的目的。

    相关文章

      网友评论

          本文标题:常用 Oracle 函数

          本文链接:https://www.haomeiwen.com/subject/ryewgqtx.html