oracle decode 在access中有别的函数能代替吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle decode 在access中有别的函数能代替吗?相关的知识,希望对你有一定的参考价值。
在access中有一个函数能代替在oracle中decode这个吗?
或者有什么其他技巧能达到此目的.
谢谢啦
IIf (a=b, c, d) 相当于 If a=b then c else d
例如
Oracle:
SELECT supplier_name,
decode(supplier_id,
10000, 'IBM',
10001, 'Microsoft',
10002, 'HP',
'Gateway') result
FROM suppliers;
Access:
SELECT supplier_name,
IIf (supplier_id = 10000, 'IBM',
IIf (supplier_id = 10001, 'Microsoft',
IIf (supplier_id = 10002, 'HP', 'Gateway'))) as result
FROM suppliers;本回答被提问者采纳 参考技术B 首先oracle的decode函数是oracle专用的,并不是标准sql。
在标准sql中,同样作用的函数是case when函数。
access作为一款桌面简易数据库,并没有收录上述高级函数。
但是提供了如下语法 :
iif(判断条件,判断为真的值,判断为假的值)
功能比不上decode,但是总有办法实现需求
缺点: 对于多个判断需要些多个iif嵌套才能实现,判断情况多的时候代码量巨大。例如
iif(判断1,truepart,iif(判断2,turepart2,iif(... ) ) )
Oracle Function 之 Decode
Decode函数在Oracle SQL查询语句中的使用非常广泛,也经常应用到PL/SQL语句块中。
很好的使用decode函数对程序的性能也是有很大影响;
1,decode()函数语句的基本表达式是:
decode(expr1,expr2,expr3,[expr4])
这个表达式个人理解,可以称之为decode的比较运算,可以对比 nvl()函数和 coalesce()函数。可以作如下理解该表达式:
1>,如果expr1 = expr2,decode函数返回expr3表达式的值;
2>,如果expr1 != expr2,decode函数返回expr4表达式的值,如果expr4未指定,则返回null;
使用示例1:
SELECT decode(1,
-1,
100,
90),
decode(-1,
-1,
100,
90),
decode(0,
-1,
100)
FROM dual;
decode(1,
-1,
100,
90) decode(-1,
-1,
100,
90) decode(0,
-1,
100);
------------------- -------------------- -------------------
90 100
示例说明:第一个decode函数表达式中,1 != -1,所以返回90;第二个decode函数表达式中,-1 = -1,所以返回100,第三个decode函数表达式中,0 != -1,但是未指定第4个表达式的值,所以函数返回null值。
示例2,decode函数另类用法:比如我们要查询出emp表中,有奖金的员工和没有奖金员工的总数量
通常情况下,我们需要两个查询语句:
select count(*) from emp where comm is not null;
select count(*) from emp where comm is null;
但是使用decode函数,我们可以在一行查询中搞定:
SELECT SUM(decode(nvl(comm,
1),
1,
1,
0)) count_no_comm,
SUM(decode(nvl(comm,
1),
1,
0,
1)) conut_comm
FROM emp;
COUNT_NO_COMM CONUT_COMM
------------- ----------
10 4
代码说明:借助于nvl() 函数来判定奖金comm是否为空,如果为空返回值为1,然后拿nvl的返回值和1进行比较,如果相等,返回1(说明comm为空),不等返回0(说明comm不为空); 最后sum对decode的返回结果进行加和,求出结果。
2,decode分段函数,是上述decode比较运算的一种变式,形式和case 表达式很相似,可以作为参考比较
语法结构:
decode(expr1,expr2,return_expr2, --如果expr1=expr2,返回return_expr2;
expr3,return_expr2, --如果expr1=expr3,返回return_expr3;
exprn,return_exprn, --如果expr1=expr2,返回return_exprn;
exprx) [new_expr] --如果expr1不再上述expr2-exprn之间,返回return_exprx; new_expr为别名
使用示例:根据部门ID不同,对薪资进行相应的调整
1>,我们先用case表达式实现:
select ename,deptno,sal,case deptno when 10 then sal * 1.1
when 20 then sal * 1.2
when 30 then sal * 1.3
else sal
end new_sal
from emp order by deptno,new_sal;
ENAME DEPTNO SAL NEW_SAL
-------------------- ---------- ---------- ----------
MILLER 10 1800 1980
CLARK 10 2950 3245
KING 10 5000 5500
SMITH 20 1300 1560
ADAMS 20 1600 1920
FORD 20 3000 3600
SCOTT 20 3000 3600
JONES 20 3475 4170
JAMES 30 1450 1885
WARD 30 1750 2275
MARTIN 30 1750 2275
TURNER 30 2000 2600
ALLEN 30 2100 2730
BLAKE 30 3350 4355
2>,使用decode函数实现
select ename,deptno,sal,decode(deptno,10,sal * 1.1,
20,sal * 1.2,
30,sal * 1.3,
sal) new_sal
from emp;
ENAME DEPTNO SAL NEW_SAL
-------------------- ---------- ---------- ----------
SCOTT 20 3000 3600
SMITH 20 1300 1560
ALLEN 30 2100 2730
WARD 30 1750 2275
JONES 20 3475 4170
MARTIN 30 1750 2275
BLAKE 30 3350 4355
CLARK 10 2950 3245
KING 10 5000 5500
TURNER 30 2000 2600
ADAMS 20 1600 1920
JAMES 30 1450 1885
FORD 20 3000 3600
MILLER 10 1800 1980
在某些情况下,使用decode函数可以达到和case表达式一样效果。
以上就是decode函数的应用;希望对您有所帮助;
下期更精彩;
以上是关于oracle decode 在access中有别的函数能代替吗?的主要内容,如果未能解决你的问题,请参考以下文章
核心数据-[Decodable.Address initWithCoder:]:发送到实例的无法识别的选择器
Access restriction : The constructor BASE64Decoder() is not accessible due to restriction on require