17,140
社区成员




SQL> drop table t;
Table dropped
SQL> create table t(d date);
Table created
SQL> insert into t values(to_date('21001231','yyyymmdd'));
1 row inserted
SQL> commit;
Commit complete
SQL> select * from t;
D
-----------
2100/12/31
SQL>
没有楼主说的问题啊