欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql中decode函数的几种用法

程序员文章站 2022-07-16 23:31:35
1、使用decode判断字符串是否一样 decode(value,if1,then1,if2,then2,if3,then3,...,else) 含义为 IF 条件=值1 THEN RETURN(value 1) ELSIF 条件=值2 THEN RETURN(value 2) ...... ELS ......
1、使用decode判断字符串是否一样
decode(value,if1,then1,if2,then2,if3,then3,...,else)
含义为
if 条件=值1 then
    return(value 1)
elsif 条件=值2 then
    return(value 2)
    ......
elsif 条件=值n then
    return(value 3)
else
    return(default)
end if
示例:
Mysql中decode函数的几种用法

 

 

2、使用decode比较大小

select decode(sign(var1-var2),-1,var1,var2) from dual
sign()函数根据某个值是0、正数还是负数,分别返回0、1、-1
示例:
Mysql中decode函数的几种用法

 

 

3、使用decode函数分段

工资大于5000为高薪,工资介于3000到5000为中等,小于3000为低薪
示例:
Mysql中decode函数的几种用法

 

 4、利用decode实现表或者视图的行列转换

Mysql中decode函数的几种用法

 

 

5、使用decode函数来使用表达式来搜索字符串

decode (expression, search_1, result_1, search_2, result_2, ...., search_n, result_n, default)
decode函数比较表达式和搜索字,如果匹配,返回结果;如果不匹配,返回default值;如果未定义default值,则返回空值。
Mysql中decode函数的几种用法