I know in C how languages logical operators are evaluated one at a time, therefore:
false && really_expensive_function()
does not result in a function call (I cannot remember the CS name for this). Does the same thing happen in PL / SQL or do I need to split the IF parts to separate blocks?
Chris source
share