MySql MAKEDATE function equivqlent
Dear all,
MySql offers the makedate() function which is to be used like:
makedate(year(fromTime), dayofyear(fromTime))
Oracle does not offer this function.
I'm trying to create such an equivalent function in Oracle with a statement like:
CREATE OR REPLACE FUNCTION MAKEDATE(...)
in the same spirit as in http://www.lamp2lapo.com/category/downloads/
Is it possible to have a user defined function with the same name as an Oracle native function..?
How to create that makedate function..?
Regards,
Stephane