if day < 10 then
dataV := to_date(((day*1000000) + (month*10000) + year),'d/mm/yyyy');
else
dataV := to_date(((day*1000000) + (month*10000) + year),'dd/mm/yyyy');
end if;
Guys I'm trying to form a date using only integers by doing this math as I saw in some Oracle forum but it keeps giving me errors because apparently this isn't correct. Any suggestions?
If I understand correctly, one of the following examples should help:
Or