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

Come ottenere un elenco di funzioni Oracle native come (NVL, ABS ecc.)

Controlla questo:

select distinct PROCEDURE_NAME
from ALL_PROCEDURES
where OWNER = 'SYS'
    and OBJECT_NAME = 'STANDARD';