当我在 oracle 10g 中执行此操作时:
select to_date(trunc(SOMEINPUTdATE)) from table1
where to_date(trunc(date_column_timestamp),'MM/DD/YYYY')
>= to_date('03/11/2011' ,'MM/DD/YYYY')
我得到:ORA-01843: not a valid month
如果我更改为 : 'YYYY/MM/DD'
,它会起作用。但是'MM/DD/YYYY'
一个有效的格式对吗?