Oracle Database/Fonctions
Création
modifierUne fonction doit impérativement renvoyer quelque chose, par une clause RETURN
.
create or replace function loginExist(Param1 tableName.champName%type)
return boolean
is
-- declare
retVal boolean := true;
begin
--Instructions
return retVal;
end;