oracle 中關於當前的sysdate,sysstimestap,current_date,curent_timestamp 區別
alter session set TIME_ZONE = 'Asia/Tokyo';
select sysdate,current_date,systimestamp,current_timestamp from dual
2008-6-19 9:35:55 ,2008-6-19 10:35:55,2008-6-19 9:35:55.038361 +08:00 ,
2008-6-19 10:35:55.038365 +09:00
alter session set TIME_ZONE = 'Asia/Shanghai';
select sysdate,current_date,systimestamp,current_timestamp from dual
2008-6-19 9:38:39,2008-6-19 9:38:39,2008-6-19 9:38:39.640073 +08:00,2008-6-19 9:38:39.640073 +08:00
Oracle資料庫to_date()與24小時製表示法及mm分鐘的顯示:
1、採用“yyyy-MM-dd HH:mm:ssORA 01810 格式作為格式進行轉換的弊端
在使用Oracle的to_date函式來做日期轉換時,許多程式設計師會下意識的採用“yyyy-MM-dd HH:mm:ss”格式作為格式進行轉換,但是在Oracle中會引起錯誤:“ORA 01810 格式程式碼出現兩次”。
示例:
select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mm:ss') from dual;
原因是SQL中不區分大小寫,MM和mm被認為是相同的格式程式碼,所以Oracle的SQL採用了mi代替分鐘。
select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from dual;
2、此外,我們還需要以24小時的形式顯示出要用的HH24
select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from dual;//mi是分鐘
select to_char(sysdate,'yyyy-MM-dd HH24:mm:ss') from dual;//mm會顯示月份
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-627541/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle中sysdate和current_date兩者的區別Oracle
- 【MySQL】now()與sysdate()的區別MySql
- 水煮oracle33---關於oracle中segment、schema和user區別Oracle
- 關於oracle中的sql資料型別OracleSQL資料型別
- Vuejs中關於computed、methods、watch的區別VueJS
- 關於記憶體中棧和堆的區別記憶體
- 不同於Oracle:SEQUENCE的區別Oracle
- 關於mysql中欄位定義的型別int、tinyint區別MySql型別
- 關於oracle時區Oracle
- 關於Oralce Trigger中before、after的區別
- 關於HashMap和Hashtable的區別HashMap
- 關於CI,ASCS,DI的區別
- 關於sysdba,sysoper,dba的區別
- 【原】Oracle中Left Outer Join和外關聯(+)的區別Oracle
- oracle中in和exists的區別Oracle
- 關於oracle中的undoOracle
- 關於mssql中go等幾個關鍵字的用途及區別SQLGo
- oracle 時間函式sysdateOracle函式
- 關於C++當中的“模板函式”C++函式
- nginx關於root與alias的區別Nginx
- 關於C與C++的區別C++
- 關於 in與exist , not in與not exist 的區別
- 關於JSF與Struts的區別JS
- 關於gcc、make和CMake的區別GC
- 對於java中的"\"和"/" 區別Java
- oracle中distinct和group by的區別Oracle
- oracle中 DG和GG的區別Oracle
- Oracle中truncate和delete的區別Oracledelete
- (轉)ORACLE 中IN和EXISTS的區別Oracle
- Oracle中latch和lock的區別Oracle
- 檢視oracle當前sessionOracleSession
- 關於oracle中的row pieceOracle
- 關於oracle10G標準版和企業版的區別Oracle
- 關於Oracle資料庫與MySQL資料庫的幾點區別Oracle資料庫MySql
- 關於stable_sort()和sort()的區別:
- 關於Oracle字元型別的比較Oracle字元型別
- [譯] Swift 中關於併發的一切:第一部分 — 當前Swift
- 區塊鏈當前的發展現狀區塊鏈