仅更新 Pl/SQL 上日期时间字段的日期
所以我需要更新 Oracle 数据库上的一些日期,该字段是日期时间,但我只想更新日期并保留时间原样...查询如下:
update table
SET field = to_date('07312010','MMDDYY');
但它覆盖了小时、分钟和秒在现场,我想更新日期,但我希望时间保持不变,有什么想法吗?
So i need to update some dates on an Oracle Database, the field is a datetime, but i only want the date updated and leave the time as it is... There query goes like this:
update table
SET field = to_date('07312010','MMDDYY');
But it's overriding the hours, minutes and seconds from the field, i want to update the date but i want the hour to be left the same, any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用:
You could use:
在Oracle中,空白是一个小问题,我稍微修改了一下。
In Oracle the blank is a minor issue , I modified it a little bit.