Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用以下规则将日、月和年指定为三个 INTEGER 值,它们之间没有分隔符:
日和月部分必须有两位数。当日或月小于 10 时,必须以零开头。
对于任何年份,年份部分都可以有四位数字(例如,1997)。对于 1950 到 2049 范围内的年份,年份分量也可以有两位数(50 代表 1950,依此类推)。
您不能在日期组件之间使用任何分隔符。
示例:“240497”或“04241997”
我不确定是什么问题,但您可以使用to_char
to_char
select to_char(sysdate,'ddmmyyyy') as d from dual;
输出
D -------- 07092016
如果要插入表格
insert into t1 (field1) values (to_char(sysdate,'ddmmyyyy'));