Oracle
 sql >> Database >  >> RDS >> Oracle

Come creare una stored procedure Oracle che può restituire entità specifiche e tutte le entità

Ecco un semplice esempio:

Considera la tabella:PERSONS (person_id, name)

Questa funzione restituirà un cursore che restituisce un record o tutti i record se non viene fornito alcun argomento:

CREATE FUNCTION get_person
   (person_id IN persons.person_id%TYPE := NULL)
   RETURN SYS_REFCURSOR IS
   rc SYS_REFCURSOR;
BEGIN
   OPEN rc FOR
     SELECT *
     FROM   persons p
     WHERE  p.person_id = get_person.person_id
     OR     get_person.person_id IS NULL;
   RETURN rc;
END;