Hi, I'm having problems with the return type of the following function:
CREATE OR REPLACE
FUNCTION xxx
(
idX NUMBER,
idY NUMBER)
RETURN DATE
IS
BEGIN
RETURN (SYSDATE);
END xxx;
--What is wrong with this code? it seems that if the return type is different from the parameters type then this result in a error.. is there an solution for this? does anyone knows?
I can't change the return type and the parameters type..