Answers for "to_char in oracle sql"

SQL
2

sql to char function with date

SELECT
  TO_CHAR( sysdate, 'YYYY-MM-DD' )
FROM
  dual;
Posted by: Guest on March-07-2020
1

to_char oracle

SELECT TO_CHAR(sysdate, 'DD-MM-YYYY') from dual;
Posted by: Guest on June-23-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language