oracle的timestamp显示格式问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle的timestamp显示格式问题相关的知识,希望对你有一定的参考价值。

select * from t_user 的时间字段timestamp,显示的格式是“16-3月 -11 09.11.01.000000 下午”,怎样可以在数据库默认显示为yyyy-mm-dd hh24:mi:ss这种格式
我不想要to_char函数转换,在session中设置NLS_DATABASE_PARAMETERS也是没用的

参考技术A 用管理员身份进行参数设置可以么
update nls_database_parameters set value='yyyy-mm-dd hh24:mi:ss.ff' where parameter 'NLS_TIMESTAMP_FORMAT'
参考技术B select convert(Datetime,timestamp,9) from t_user 参考技术C alter session set nls_timestamp_format='yyyy-mm-dd hh24:mi:ss';
SQL> create table wcy_t1(f1 timestamp);

Table created.

SQL> insert into wcy_t1 values(systimestamp);

1 row created.

SQL> commit;

Commit complete.
SQL> select * from wcy_t1;

F1
---------------------------------------------------------------------------
2011-05-18 16:46:06本回答被提问者采纳
参考技术D 临时修改 alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss ';

Oracle中timestamp与date时间转换问题

项目场景:

Oracle中timestamp与date时间转换问题


问题描述

今天在处理数据同步中碰到了一个棘手的问题,之前运行很好的数据存储过程今天突然包日志执行错误,查询日志后发现,是推送方字段时间格式上出现了问题,他们数据库有个字段的格式varchar类型单储存的是时间格式,而且并非普通date类型,是timestamp格式,而我们服务器是date类型,在传输时出现了如下错误:


原因分析:

双方数据库时间格式不一致导致数据同步错误


解决方案:

对日期时间进行格式转换,将timestamp类型转换为date类型
普通相互转换的方式:
date–>timestamp

select to_date(to_char(systimestamp,'yyyy-mm-dd hh24:mi:ss'),'yyyy-mm-dd hh24:mi:ss') from dual;

timestamp–>date

select to_timestamp(to_char(sysdate,'yyyy-mm-dd hh24:mi:ss'),'yyyy-mm-dd hh24:mi:ss') from dual;

对于日期特殊的转换:
年/月/日 变成了 月/日/年:

select to_char(sysdate,'mm-dd-yyyy hh24:mi:ss') from dual;
select  to_timestamp('01-01-2016 00:00:00.000000', 'mm-dd-yyyy hh24:mi:ss.ff6') from dual;

gengxinshijian为timestamp值varchar类型时:

select cast(systimestamp as date) from dual;
select systimestamp+0 from dual;       
select   to_date(to_char(to_timestamp(gengxinshijian, 'mm-dd-yyyy hh24:mi:ss.ff6'),'yyyy/mm/dd hh24:mi:ss'),  'yyyy/mm/dd hh24:mi:ss') from dual;

to_timestamp参数传递可以参考下面官网说明:
https://docs.oracle.com/cd/E11882_01/server.112/e41085/sqlqr02001.htm#sthref713

https://help.aliyun.com/apsara/enterprise/v_3_14_0_20210519/oceanbase/enterprise-user-guide/TO_TIMESTAMP.html?spm=a2c4g.14484438.10001.539

以上是关于oracle的timestamp显示格式问题的主要内容,如果未能解决你的问题,请参考以下文章

Oracle查询结果中的日期格式显示到毫秒数,如何去掉多余的数

oracle中的TIMESTAMP和DATA格式可以转换吗?怎么转换呢?

Oracle SQL TO_TIMESTAMP_TZ 格式问题 ORA-01843: not a valid month

Oracle中timestamp与date时间转换问题

[Oracle]如何查看 10046 trace 中的 tim= ... 的具体时刻

oracle varchar2转timestamp