Answers for "to_char(to_date) in oracle"

SQL
2

oracle to_date

SELECT
  TO_DATE( '21 12 2017', 'DD MM YYYY' )
FROM
  dual;

---or----
INSERT INTO members(first_name, last_name, joined_date)
VALUES('Laureen','Davidson', TO_DATE('2017/12/21','YYYY/MM/DD'));
Posted by: Guest on March-09-2021
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