我在 Oracle 数据库中有一个 TIMESTAMP(6) 字段。该字段的值是格式
DD/MM/YYYY HH:MM:SS.000000000 PM
如何将此值更新为当前时间戳?
[指向类似问题的链接:]在 oracle 中更新日期值
我关注了这个链接,但是下面的查询需要很长时间才能执行。
update table_name set start_time = to_char(to_date(start_time, 'yyyy/mm/dd-hh:mi:ss:ff3'), '2012/10/10-19:30:00:00') where column='Q'