Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 250 Bytes

executing_a_function_or_procedure.md

File metadata and controls

15 lines (10 loc) · 250 Bytes

Executing a function or procedure

I always mix up how to executing functions versus a procedure on Oracle

Function

select <schema>.<function>(<params>) from dual;

Procedure

begin <schema>.<function>(<params>); end;