-
select deptno,job,sum(sal) from emp group by rollup(deptno,job) = group by deptno,job +group by deptno +group by null查看全部
-
break on deptno skip 2 部门号相同的内容显示一次,不同的部门号之间空两行查看全部
-
相同部门号只显示一次,不同的部门号隔两行 break on deptno skip2 设置页面每页显示30行 set pagesize 30查看全部
-
having字句的语法查看全部
-
计算平均值查看全部
-
分组函数会自动忽略空值:select count(*),count(comm) from emp; nvl函数使分组函数无法忽略空值:select count(*),count(nvl(comm,0)) from emp;查看全部
-
在group by字句之前可以使用where语句,说 where不可以使用分组函数,应该是说不能在group by 后面使用吧,在group by 只能使用 having语句进行条件筛选。查看全部
-
select avg(salary),sum(salary) from employees; select min(salary),max(salary),sum(salary) from employees; select count(*) from employees; count查询个数 select count(distinct department_id) from departments; //distinct去掉重复的记录查看全部
-
子查询的十个问题查看全部
-
部门号,员工号,员工人数查看全部
-
在一起吧查看全部
-
host cls:清除屏幕上的文字查看全部
-
where子句中不能使用组函数查看全部
-
SELECT level, empno, ename, sal, mgr FROM emp CONNECT BY prior empno=mgr START WITH mgr IS NULL ORDER BY 1;查看全部
-
select (select count(*) from emp) Total, (select count(*) from emp where to_char(hiredate,'yyyy')='1980') "1980", (select count(*) from emp where to_char(hiredate,'yyyy')='1981') "1981", (select count(*) from emp where to_char(hiredate,'yyyy')='1987') "1987" from dual;查看全部
举报
0/150
提交
取消