Converting DATE to another language : I18N « Char Functions « Oracle PL / SQL






Converting DATE to another language



SQL>
SQL>
SQL> -- Converting DATE to another language.
SQL> SELECT TO_CHAR(SYSDATE,'MONTH DD YY','NLS_DATE_LANGUAGE=german') "German Date" from DUAL;

German Date
---------------
AUGUST    31 06

SQL>
SQL>
           
       








Related examples in the same category

1.Converting German date to DATE format