Using Oracle SQL inside APEX. I need to display seconds (1661596801) as date / time (dd/mm/yyyy - HH24:MI:SS).
The Seconds valve was create in MySQL - $startTimeinSeconds = time(); - this is successful
To display the date / time in Oracle SQL I have been using the follow which gives no result:
select TO_DATE("1661596801", "DD/MM/YYYY HH24:MI:SS") from dual;
What do wrong?
Thanks, Pete