向 Oracle 中插入日期
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
to_date
< /a> 在 Oracle 中插入日期的函数(日期数据类型在 Oracle 中同时具有“日期”和“时间”组件):use the
to_date
function to insert a date in Oracle (the Date datatype has both the "date" and "time" component in Oracle):