我正在使用查询
select to_date(DateString,'MM/dd/yy hh24:mi:ss')
from tableName
where to_date(DateString,'MM/dd/yy hh24:mi:ss') between to_date('2015-10-01','yyyy-MM-dd') and to_date('2015-10-31','yyyy-MM-dd');
结果是:ORA-01858:在需要数字的地方发现了一个非数字字符。在这里,DateString 列数据类型是 Varchar2,不能为空。DateString 的值为:
10/11/15 20:14
10/21/15 11:36
10/25/15 17:50
我不明白我在哪里做错了。