Skip to main content

CALL

Invokes a procedure.

Note

Procedures are provided per data source type and can be used to perform data manipulation or management tasks.
For a list of available procedures, refer to the documentation for each data source type.

Overview

CALL procedure_name ( [ name => ] expression [, ...] )
Usage examples
CALL statement example
CALL test(123, 'apple'); 
-- Call a procedure with named parameters
CALL test(name => 'apple', id => 123);
-- Call a procedure using the fully qualified path
CALL data_source.system.test();