CALL 문

<call statement>

CALL <method call> [ ON <call target> ] [ { TO | INTO} <variable> ]

<method call>

<method name> ( [ <expression comma list>] )

<call target>

<primary>

예제

CALL find_employee('smith') ON CLASS employee TO myvariable;

CALL update_status() ON myvariable;