Answers for "oracle concat datetime"

SQL
0

oracle concat datetime

SELECT TO_DATE(TO_CHAR(t.fromdate,'dd-mm-yyyy') ||
               ' ' ||
               TO_CHAR(t.fromtime,'hh24:mi:ss'),'dd-mm-yyyy hh24:mi:ss') as full_date_col 
FROM YourTable t
Posted by: Guest on March-02-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language