decode 查询

查出deptno=20,30部门的人员数和该部门应发的总工资
select e.deptno,count('*'), sum(e.sal)from emp e
where deptno in (20,30)
group by e.deptno

结果如下:
deptno count('*') sum(e.sal)
30 6 9400
20 5 10875


select count(decode(deptno,20,'X',null)) d20_count, sum(decode(deptno,20,sal,null)) d20_sal,count(decode(deptno,30,'X',null)) d30_count,
sum(decode(deptno,30,sal,null)) d30_sal from emp

结果如下:
d20_count d20_sal d30_count d30_sal
5 10875 6 9400

decode 解释:
DECODE(value, if1, then1, if2,then2, if3,then3, . . . else )
Value 代表某个表的任何类型的任意列或一个通过计算所得的任何结果。当每个value值被测试,如果value的值为if1,Decode 函数的结果是then1;如果value等于if2,Decode函数结果是then2;等等。事实上,可以给出多个if/then 配对。如果value结果不等于给出的任何配对时,Decode 结果就返回else 。
  需要注意的是,这里的if、then及else 都可以是函数或计算表达式。


count 解释:
The COUNT(column) function returns the number of rows without a NULL value in the specified column.
使用COUNT(column)函数可以将不为NULL值的指定列的记录数返回出来。

count(*)是把from的表中所有的记录找出来

group by 解释
分组
通用数据库具有基于表的特定列对数据进行分析的能力。
可按照在 GROUP BY 子句中定义的组对行进行分组。以其最简单的形式,组由称为分组列的列组成。
SELECT 子句中的列名必须为分组列或列函数。列函数对于 GROUP BY 子句定义的每个组各返回一个结果。

你可能感兴趣的:(SQL)