错误原因:是使用两次mm
update user_shopping set update_time=to_date('2016/8/30 23:59:59','yyyy/mm/dd hh:mm:ss')
将时间格式修改为:
update user_shopping set update_time=to_date('2016/8/30 23:59:59','yyyy/mm/dd hh:mi:ss')
对于24小时制,HH支持的不好,需要修改一下24小时的格式:
会报错误信息:ORA-01849:小时值必须介于1和12之间
update user_shopping set update_time=to_date('2016/8/30 23:59:59','yyyy/mm/dd 24hh:mi:ss')
原文链接:https://www.f2er.com/oracle/213714.html