I have two date fields in a database called "EFFECTIVE_DATE" and "POINT_DATE"
How do I create a new date field, where the date is made up from the year of "EFFECTIVE_DATE", the month of "POINT_DATE" and the day of "POINT_DATE" ?
I would normally use Datefromparts, but this is an Oracle Database not Microsoft
Kind Regards
TO_CHAR()andTO_DATE()should work. You can also useEXTRACT(). The hard part is ensuring you don't end up with invalid dates, e.g.Feb 31.