当前位置: 代码迷 >> DB2 >> db2 中的日期时间格式的有关问题
  详细解决方案

db2 中的日期时间格式的有关问题

热度:8835   发布时间:2013-02-26 00:00:00.0
db2 中的日期时间格式的问题.
在执行这个 SQL 语句后:
SQL code
select EFFECTIVE_DATE, to_char(timestamp(EFFECTIVE_DATE),'mm/dd/yyyy hh:mm:ss') from TBL_GLUBP_BACKUP_POLICY;

的结果是:
 EFFECTIVE_DATE 2
 --------------------- -------------------
 2012-05-18 15:46:58.0 05/18/2012 03:05:58
 2012-04-05 17:49:54.0 04/05/2012 05:04:54
 2012-04-05 17:49:54.0 04/05/2012 05:04:54
 2012-04-23 14:28:54.0 04/23/2012 02:04:54

为什么后面转换的时间格式 会变成这样 
[05/18/2012 03:05:58] 
而不是这样呢
[05/18/2012 15:46:58]
也就是最后的 时分秒 会不对了呢?

------解决方案--------------------------------------------------------
类似问题其实在手册中都有解释。 24小时的格式是 HH24:MI:SS
引用HH HH behaves the same as HH12
HH12 Hour of the day (01-12) in 12-hour format.
AM is the default meridian indicator.
HH24 Hour of the day (00-24) in 24-hour format.
  相关解决方案