PLSQL Developer 中decode()函数的基本用法?

发布网友 发布时间:2022-04-27 11:44

我来回答

2个回答

热心网友 时间:2022-04-08 22:59

decode(a,b,c,d,e,.....)
如果a=b,则输出c,a=d,则输出e,否则....
e.g select decode('a','a','1','b','2','3') from al
'a'='a' 输出1
select decode('b','a','1','b','2','3') from al
'b'!='a' ‘b'='b' 输出2
select decode('c','a','1','b','2','3') from al
'c'!='a' 'c' !='b' 输出3
就是相当于变形了的if..else..语句

热心网友 时间:2022-04-09 00:17

decode(a,b,c,d,e,.....)
如果a=b,则输出c,a=d,则输出e,否则....
e.g
select
decode('a','a','1','b','2','3')
from
al
'a'='a'
输出1
select
decode('b','a','1','b','2','3')
from
al
'b'!='a'
‘b'='b'
输出2
select
decode('c','a','1','b','2','3')
from
al
'c'!='a'
'c'
!='b'
输出3
就是相当于变形了的if..else..语句

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com