By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
| PARAMETER | VALUE |
|---|---|
| NLS_DATE_FORMAT | DD-MON-RR |
| TO_DATE('20-JUN-2010') |
|---|
| 20-JUN-10 |
ORA-01843: An invalid month was specified.
ORA-01858: A non-numeric character was found instead of a numeric character.
| TO_DATE('20-JUN-2010','DD-MON-YYYY','NLS_DATE_LANGUAGE=ENGLISH') |
|---|
| 2010-06-20 |
| DATE'2010-06-20' |
|---|
| 2010-06-20 |