向 Oracle 中插入日期

发布于 2024-09-04 18:07:40 字数 260 浏览 3 评论 0原文

我在 oracle 10g 中有 2 个日期字段(MyDate 和 MyTime)

,我需要插入包含日期和日期的字符串。 time

strDate = 04/01/2010 00:00:00

strTime = 01/06/2010 17:20:12

如何插入strDate & strTime 到字段的 MyDate &我的时光

i have 2 Date field's in oracle 10g (MyDate and MyTime)

and i need to insert string that contain a date & time

strDate = 04/01/2010 00:00:00

strTime = 01/06/2010 17:20:12

how to insert strDate & strTime to field's MyDate & MyTime

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

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

发布评论

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

评论(1

最初的梦 2024-09-11 18:07:40

使用to_date< /a> 在 Oracle 中插入日期的函数(日期数据类型在 Oracle 中同时具有“日期”和“时间”组件):

INSERT INTO your_table(MyDate, MyTime) VALUES (
   to_date('04/01/2010 00:00:00', 'dd/mm/yyyy hh24:mi:ss'),
   to_date('01/06/2010 17:20:12', 'dd/mm/yyyy hh24:mi:ss')
);

use the to_date function to insert a date in Oracle (the Date datatype has both the "date" and "time" component in Oracle):

INSERT INTO your_table(MyDate, MyTime) VALUES (
   to_date('04/01/2010 00:00:00', 'dd/mm/yyyy hh24:mi:ss'),
   to_date('01/06/2010 17:20:12', 'dd/mm/yyyy hh24:mi:ss')
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文