日期格式二:SSSSS 返回自午夜到指定時間共逝去的秒數(shù)(范圍:0-86399)例如: SQL> select to_char(sysdate,¨sssss¨) from dual;
TO_CHAR(SYSDATE,¨SSSSS¨) ------------------------ 55141DL 根據(jù)數(shù)據(jù)庫nls_date_format參數(shù)中的設(shè)置及nls_language,nls_territory參數(shù)中的格式返回長日期形式,,有點兒繞,,呵呵你試試就知道了例如: SQL> select to_char(sysdate,¨DL¨) from dual;
TO_CHAR(SYSDATE,¨DL¨) ------------------------ 2007 年12月14日 星期五DS 與上相同返回短日期形式例如: SQL> select to_char(sysdate,¨Ds¨) from dual;
TO_CHAR(SYSDATE,¨DS¨) --------------------- 2007-12-14TS 與DL,DS參數(shù)類似,,不過ts返回的是時間例如: SQL> select to_char(sysdate,¨ts¨) from dual;
TO_CHAR(SYSDATE,¨TS¨) --------------------- 下午 3:21:20DY 返回日期簡寫例如: SQL> alter session set nls_language=¨SIMPLIFIED CHINESE¨; 會話已更改,。 SQL> select to_char(sysdate,¨dy¨) from dual; TO_CHAR(SYSD ------------ 星期五 嗯?怎么沒變,?黑黑中文沒法簡了嘛,,這樣試試~~ SQL> alter session set nls_language=¨AMERICAN¨; Session altered. SQL> select to_char(sysdate,¨dy¨) from dual; TO_CHA ------ friRR RR 參數(shù)與YY參數(shù)很類似,但取值規(guī)則略有不同:如果輸入的兩位數(shù)是00-49: 如果當(dāng)前年份屬于00-49,則返回成本世紀(jì)所在年份,; 如果當(dāng)前年份屬于50-99,,則返回成下世紀(jì)所在年份。 如果輸入的兩位數(shù)是50-99: 如果當(dāng)前年份屬于00-49,,則返回成上世紀(jì)所在年份 如果當(dāng)前年份屬于50-99,,則返回成本世界所在年份 注:這種自動轉(zhuǎn)換只適用于 String -> Date 的轉(zhuǎn)換,如果是 Date -> String,,那就按照 Date 存儲的值來轉(zhuǎn)換,,此時再用 RR/RRRR 已經(jīng)沒有意義了,因為 Oracle 內(nèi)部存儲的年份是四位數(shù)的,。例如: SQL> select sysdate from dual; SYSDATE ------------------- 2007-12-18 15:11:39 SQL> select to_date(¨12¨,¨rr¨) from dual; TO_DATE(¨12¨,¨RR¨) ------------------- 2012-12-01 00:00:00 SQL> select to_date(¨51¨,¨rr¨) from dual; TO_DATE(¨51¨,¨RR¨) ------------------- 1951-12-01 00:00:00RRRR 輸入值可以是2位也可以是4位,,2位時規(guī)則與RR完全相同。 例如: SQL> select to_date(¨97-11-3¨,¨rrrr-mm-dd¨) from dual;
TO_DATE(¨97-11-3¨,¨RRRR-MM-DD¨ ------------------------------ 1997-11-3
SQL> select to_date(¨17-11-3¨,¨rrrr-mm-dd¨) from dual;
TO_DATE(¨17-11-3¨,¨RRRR-MM-DD¨ ------------------------------ 2017-11-3
FM 填充模式,。 Oracle 默認(rèn)使用空白字符填充被格式化的元素,,確保寬度一致。例如: 例如: SQL> select to_char(to_date(¨2007-3-1¨,¨yyyy-mm-dd¨),¨month¨) mm,length(to_char(to_date(¨2007-3-1¨,¨yyyy-mm-dd¨),¨month¨)) ll from dual; MM LL --------- ---------- march 9 SQL> select to_char(to_date(¨2007-12-1¨,¨yyyy-mm-dd¨),¨month¨) mm,length(to_char(to_date(¨2007-12-1¨,¨yyyy-mm-dd¨),¨month¨)) ll from dual; MM LL --------- ---------- december 9如上例可以看到,,不管幾月份,,其返回所占長度是一致的。
例如: SQL> select to_char(to_date(¨2007-3-1¨,¨yyyy-mm-dd¨),¨fmmonth¨) mm,length(to_char(to_date(¨2007-3-1¨,¨yyyy-mm-dd¨),¨fmmonth¨)) ll from dual; MM LL ----- ---------- march 5 SQL> select to_char(to_date(¨2007-12-1¨,¨yyyy-mm-dd¨),¨fmmonth¨) mm,length(to_char(to_date(¨2007-12-1¨,¨yyyy-mm-dd¨),¨fmmonth¨)) ll from dual; MM LL -------- ---------- december 8 與上對比,,看出區(qū)別來了吧。
例如: SQL> alter session set nls_date_format=¨fmyyyy-mm-dd hh24:mi:ss¨; Session altered. SQL> select to_date(¨2007-8-1 03:03:04¨,¨yyyy-mm-dd hh24:mi:ss¨) from dual; TO_DATE(¨2007-8-103 ------------------- 2007-8-1 3:3:4 SQL> alter session set nls_date_format=¨yyyy-mm-dd hh24:mi:ss¨; Session altered. SQL> select to_date(¨2007-8-1 03:03:04¨,¨yyyy-mm-dd hh24:mi:ss¨) from dual; TO_DATE(¨2007-8-103 ------------------- 2007-08-01 03:03:04 SQL> alter session set nls_date_format=¨fmyyyy-mm-fmdd hh24:fmmi:ss¨; Session altered. SQL> select to_date(¨2007-8-1 03:03:04¨,¨yyyy-mm-dd hh24:mi:ss¨) from dual; TO_DATE(¨2007-8-103 ------------------- 2007-8-01 03:3:4FX 精確匹配。使用FX參數(shù)之后:
例如: SQL> select to_date(¨2007-9-26¨,¨yyyy-mm-dd¨) from dual; TO_DATE(¨2007-9-26¨ ------------------- 2007-09-26 00:00:00 SQL> select to_date(¨2007-9-26¨,¨fxyyyy-mm-dd¨) from dual; select to_date(¨2007-9-26¨,¨fxyyyy-mm-dd¨) from dual * ERROR at line 1: ORA-01862: the numeric value does not match the length of the format item SQL> select to_date(¨2007-09-26¨,¨fxyyyy-mm-dd¨) from dual; TO_DATE(¨2007-09-26 ------------------- 2007-09-26 00:00:00 SQL> select to_date(¨2007-9-26¨,¨fxyyyy-fmmm-dd¨) from dual; TO_DATE(¨2007-9-26¨ ------------------- 2007-09-26 00:00:00 SQL> select to_date(¨2007-9-26¨,¨fxyyyy/fmmm/dd¨) from dual; select to_date(¨2007-9-26¨,¨fxyyyy/fmmm/dd¨) from dual * ERROR at line 1: ORA-01861: literal does not match format stringX 本地的默認(rèn)分隔符例如: SQL> select to_char(systimestamp,¨hh24:mi:ssxff¨) from dual;
TO_CHAR(SYSTIMESTAMP,¨HH24:MI: ------------------------------ 16:21:12.609000以下四項為時區(qū)相關(guān)參數(shù),, 明確表示某一個時區(qū),,應(yīng)該聯(lián)合使用 TZH TZM 或者 TZR TZDTZD /TZR例如: SQL> select to_char(systimestamp,¨tzr:tzd¨) from dual; TO_CHAR(SYSTIMESTAMP,¨TZR:TZD¨) --------------------------------------- +08:00:TZH/TZM例如: SQL> select to_char(systimestamp,¨tzh:tzm¨) from dual; TO_CHA ------ +08:00應(yīng)用示例:1,、 與指定日期在同一周,,周1的日期是:SQL> select to_date(¨2007-12-6¨, ¨yyyy-mm-dd¨) 2 - to_char(to_date(¨2007-12-6¨, ¨yyyy-mm-dd¨), ¨d¨) + 2 3 from dual; TO_DATE(¨2 ---------- 2007-12-03 SQL> select trunc(to_date(¨2007-12-6¨, ¨yyyy-mm-dd¨), ¨d¨) + 1 rn from dual;
TRUNC(TO_DATE(¨2007-12-6¨,¨YYY ------------------------------ 2007-12-3 SQL> select next_day(to_date(¨2007-12-6¨, ¨yyyy-mm-dd¨) - 7, ¨ 星期一¨) from dual;
NEXT_DAY(TO_DATE(¨2007-12-6¨,¨ ------------------------------ 2007-12-32、 指定日期當(dāng)月最后一個星期天:SQL> select max(rn) 2 from (select to_date(¨2007-12-¨ || rownum, ¨yyyy-mm-dd¨) rn 3 from dual 4 connect by rownum <= 5 (to_char(to_date(¨2007-12-31¨, ¨yyyy-mm-dd¨), ¨dd¨))) a 6 where to_char(a.rn, ¨d¨) = 1 7 ;
MAX(RN) ----------- 2007-12-30 SQL> select next_day(trunc(to_date(¨2007-12-31¨, ¨yyyy-mm-dd¨), ¨month¨)+31-7,¨ 星期日¨) from dual;
NEXT_DAY(TRUNC(TO_DATE(¨2007-1 ------------------------------ 2007-12-303,、 今年第127天是幾號:SQL> select to_date(¨127¨,¨ddd¨) from dual; TO_DATE(¨1 ---------- 2007-05-07 |
|