-
nvl()函數取消分組函數濾空功能查看全部
-
直接用from后面的子查詢不也是可以嗎?這樣來看豈不是復雜了查看全部
-
執行計劃查看全部
-
子查詢中的空值問題 select * from emp where empno not in (select mgr from emp where mgr is not null);查看全部
-
判斷一個值是否為空,不能用=、!=查看全部
-
子查詢中排序 select rownum,empno,ename,sal from (select * from emp order by sal desc) where rownum<=3;查看全部
-
行號需要注意的兩個問題 1、行號永遠按照默認的順序生成 2、行號只能使用<,<=;不能使用>,>=查看全部
-
子查詢注意的10個問題(二)查看全部
-
子查詢注意的10個問題(一)查看全部
-
層次查詢 select level,empno,ename,sal,mgr from emp connect by prior empno=mgr start with mgr is null order by 1;查看全部
-
外連接寫法 左外連接:where e.deptno=d.deptno(+) 右外連接:where e.deptno(+)=d.deptno查看全部
-
外連接 左外連接:當連接條件不成立時,等號左邊的表仍然被包含 右外連接:當連接條件不成立時,等號右邊的表仍然被包含查看全部
-
Group By語句的增強 group by rollup(a,b)查看全部
-
where與having的區別 1、不能在where子句中使用組函數 2、可以在having子句中使用組函數查看全部
-
組函數規則 所用包含于select列表中,而未包含于組函數中的列都必須包含于group by子句中查看全部
舉報
0/150
提交
取消