to_char(sysdate, 'Day', 'nls_date_language=Dutch')
SQL>
SQL> select to_char(sysdate, 'Day')
2 , to_char(sysdate, 'Day', 'nls_date_language=Dutch')
3 from dual;
TO_CHAR(S TO_CHAR(S
--------- ---------
Maandag Maandag
SQL>
SQL>
Related examples in the same category