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

Esiste un pragma PL/SQL simile a DETERMINISTIC, ma per l'ambito di un singolo SQL SELECT?

Se lo fai:

select t.x, t.y, (select my_function(t.x) from dual)
from t

quindi Oracle può utilizzare la memorizzazione nella cache delle sottoquery per ottenere chiamate di funzioni ridotte.