如何将Stackoverflow数据转储中的时间戳转换为Oracle时间戳格式?

发布于 2024-11-01 04:31:50 字数 192 浏览 2 评论 0原文

如何将 Stackoverflow 数据转储中的时间戳 ('2008-08-03T18:06:30.913') 转换为 Oracle 时间戳格式?下面的函数中应该用什么来代替问号?

TO_TIMESTAMP('2008-08-03T18:06:30.913','YYYY-MM-DD??HH24:MI:SS.FFF')

How do I convert this timestamp ('2008-08-03T18:06:30.913') in Stackoverflow data dump into Oracle Timestamp format? What should be included in place of the question marks in the function below?

TO_TIMESTAMP('2008-08-03T18:06:30.913','YYYY-MM-DD??HH24:MI:SS.FFF')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尘世孤行 2024-11-08 04:31:50

我相信这应该有效

TO_TIMESTAMP('2008-08-03T18:06:30.913','yyyy-mm-dd"T"hh24:mi:ss"Z"')

这符合 ISO 8601格式,T表示时间部分的开始。

(现在无法运行来检查这一点)希望这有帮助

I believe this should work

TO_TIMESTAMP('2008-08-03T18:06:30.913','yyyy-mm-dd"T"hh24:mi:ss"Z"')

This is in accordance to ISO 8601 format and T indicates the start of the time part.

(Can't run now to check this) Hope this helps

没有心的人 2024-11-08 04:31:50
SQL> select to_timestamp('2008-08-03T18:06:30.913','yyyy-mm-dd"T"hh24:mi:ss.ff3')
  2    from dual
  3  /

TO_TIMESTAMP('2008-08-03T18:06:30.913','YYYY-MM-DD"T"HH24:MI:SS.FF3')
---------------------------------------------------------------------------
03-AUG-08 06.06.30.913000000 PM

1 row selected.
SQL> select to_timestamp('2008-08-03T18:06:30.913','yyyy-mm-dd"T"hh24:mi:ss.ff3')
  2    from dual
  3  /

TO_TIMESTAMP('2008-08-03T18:06:30.913','YYYY-MM-DD"T"HH24:MI:SS.FF3')
---------------------------------------------------------------------------
03-AUG-08 06.06.30.913000000 PM

1 row selected.
风为裳 2024-11-08 04:31:50

那么,您可以将 T 替换为空格。我不认为字符串中的“T”有任何特定含义。看起来它用作日期和日期之间的分隔符。时间。可以使用oracle的replace功能去掉“T”

Well, you can replace the T with a space. I don't think the "T" in the string has any specific meaning. Looks like its used as a separator between date & time. You can use the replace function of oracle to remove the "T"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文