码迷,mamicode.com
首页 > 其他好文 > 详细

ORA 01810 格式代码出现两次的error

时间:2018-12-27 18:32:07      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:就会   from   oracl   strong   区分   ror   sel   rac   to_date   

列如:

select * from goods
where g_time between to_date(‘2018/12/26 10:01:59‘,‘yyyy-MM-dd hh:mm:ss‘) and to_date(‘2018/12/26 10:05:17‘,‘ yyyy-MM-dd hh:mm:ss‘);

此时就会报错!

原因:SQL中不区分大小写,MM和mm被认为是相同的格式代码,所以Oracle的SQL采用了mi代替分钟。

解决:select * from goods 
   where g_time between to_date(‘2018/12/26 10:01:59‘,‘yyyy-MM-dd hh:mi:ss‘) and to_date(‘2018/12/26 10:05:17‘,‘ yyyy-MM-dd hh:mi:ss‘);

ORA 01810 格式代码出现两次的error

标签:就会   from   oracl   strong   区分   ror   sel   rac   to_date   

原文地址:https://www.cnblogs.com/leafarmyarmy/p/10185069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!