1.時間的處理 獲取年: to_char(hiredate,'MM'); 這裡hiredate是date類型,格式1981/4/2 同理:to_char(hiredate,'yyyy') year,to_char(hiredate,'MM') month 2.表中存在樹形結構 start with ...
1.時間的處理
獲取年: to_char(hiredate,'MM');---這裡hiredate是date類型,格式1981/4/2
同理:to_char(hiredate,'yyyy') year,to_char(hiredate,'MM') month
2.表中存在樹形結構
start with 條件1 connect by prior 條件2;---條件2是表中的父子欄位。
例如:oracle自帶scott.emp表,這裡存在樹形關係。
查詢'JONES'員工及所有其直接、間接下屬員工的信息:
select e.* from emp e start with ename='JONES' connect by prior empno=mgr;
結果:
1 7566 JONES MANAGER 7839 1981/4/2 2975.00 20 2 7788 SCOTT ANALYST 7566 1987/4/19 3000.00 20 3 7876 ADAMS CLERK 7788 1987/5/23 1100.00 20 4 7902 FORD ANALYST 7566 1981/12/3 3000.00 20 5 7369 SMITH CLERK 7902 1980/12/17 800.00