首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >在Oracle中将字符串日期转换为日期时间

在Oracle中将字符串日期转换为日期时间
EN

Stack Overflow用户
提问于 2011-10-28 02:35:09
回答 3查看 193.1K关注 0票数 27

如何在oracle中将此字符串date转换为datetime。

代码语言:javascript
复制
2011-07-28T23:54:14Z

使用此代码会抛出错误:

代码语言:javascript
复制
TO_DATE('2011-07-28T23:54:14Z',  'YYYY-MM-DD HH24:MI:SS')

如何做到这一点?

代码语言:javascript
复制
Error report:
SQL Error: ORA-01861: literal does not match format string
01861. 00000 -  "literal does not match format string"
*Cause:    Literals in the input must be the same length as literals in
           the format string (with the exception of leading whitespace).  If the
           "FX" modifier has been toggled on, the literal must match exactly,
           with no extra whitespace.
*Action:   Correct the format string to match the literal.

更新:-

TO_DATE('2011-07-28T23:54:14Z','YYYY-MM-DD"T"HH24:MI:SS"Z"')

我在列中只看到日期而不是时间

代码语言:javascript
复制
28-JUL-11
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/7920637

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档