Oracle version:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Test:
select TO_DATE('2022.02.21','YYYY-MM-DD') from dual; --- convert success
select TO_DATE('20220221','YYYY-MM-DD') from dual; --- convert success
select TO_DATE('2022/02/21','YYYY-MM-DD') from dual; --- convert success
Why dateStr and dateFmt using different date format can work well in Oracle TO_DATE( dateStr, dateFmt)
?
Oracle will ignore punctuation characters:
Unless you use the
FX
format modifier:For example, given the queries:
Then only the last one will work and the first 3 will raise the exception:
db<>fiddle here