-
使用函数和子查询两种不同的方式解决同样的问题查看全部
-
group by 语句增强查看全部
-
WM_concat 行转列分组函数查看全部
-
子查询中的空值问题查看全部
-
select * from emp where empno not in (select mgr from emp where mgr is not null);查看全部
-
相关子查询:将主查询中的值作为参数传递给子查询 select empno,ename,sal,(select avg(sal) from emp where deptno=e.deptno) avgsal from emp e where ssal > (select avg(sal) from emp where deptno=e.deptno);查看全部
-
行号 rownum 按照默认的顺序生成(涉及Oracle中的临时表),是不随排序 order by 而发生变化的。查看全部
-
rownum 代表行号,Oracle中的伪列查看全部
-
not in 结果集中不允许有null,not in 等同于 不等于所有。查看全部
-
group by 字句后不可以使用子查询查看全部
举报
0/150
提交
取消