原因:查询时使用类似between '2017-07-08 00:00:00' and '2017-07-08 23:59:59'
sql语句时ORA-01861: 文字与格式字符串不匹配
(上述语句在mysql中执行是没有问题的)
解决方法:修改语句为between to_date('2017-07-08 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2017-07-08 23:59:59','yyyy-mm-dd hh24:mi:ss')