Hi,
version 11.2.0.3
we get supplied a table with 2 columns - one is date datatype and holds truncated date, other is varchar2(6) and holds time.
tried below but resulting field shows 10/04/0017 11:55:40 rather than 10/04/2017 11:55:40
to_date(a.date_created||' '||a.time_created,'DD/MM/YYYY HH24:MI:SS')
2017 is in date column.
why is this happening and how best can we combine these 2 columns into one DATE datatype column?
Thanks