EXEC v15
Name
EXEC
— Execute a function.
Synopsis
EXEC function_name ['('[<argument_list>]')']
Description
EXECUTE
Parameters
procedure_name
The (optionally schema-qualified) function name.
argument_list
A comma-separated list of arguments required by the function. Each member of argument_list
corresponds to a formal argument expected by the function. Each formal argument can be an IN
parameter, an OUT
parameter, or an INOUT
parameter.
Examples
The EXEC
statement can take one of several forms, depending on the arguments required by the function:
EXEC update_balance; EXEC update_balance(); EXEC update_balance(1,2,3);
- On this page
- Name
- Synopsis
- Description
- Parameters
- Examples