Oracle基本數據類型存儲格式淺析(三)——日期類型
下面通過一個例子進行說明
SQL> create table test_date (date_col date);
表已創建
SQL> insert into test_date values (to_date(
已創建
SQL> insert into test_date values (to_date(
已創建
SQL> insert into test_date values (to_date(
已創建
SQL> insert into test_date values (to_date(
已創建
SQL> insert into test_date values (to_date(
已創建
SQL> insert into test_date values (to_date(
已創建
SQL> insert into test_date values (sysdate);
已創建
SQL> insert into test_date values (to_date(
insert into test_date values (to_date(
*
ERROR 位於第
ORA
SQL> insert into test_date values (to_date(
insert into test_date values (to_date(
*
ERROR 位於第
ORA
SQL> col dump_date format a
SQL> select to_char(date_col
TO_CHAR(DATE_COL
已選擇
通過最後兩條語句已經可以看出Oracle的DATE類型的取值范圍是公元前
日期類型長度是
由於不會出現
由於時
年和世紀的情況相對比較復雜
注意
年的保存與世紀的保存方式類似
注意
From:http://tw.wingwit.com/Article/program/Oracle/201311/18156.html