EXECUTE Statement (Microsoft Jet SQL)

From Microsoft Jet SQL Reference

EXECUTE Statement

Used to invoke the execution of a procedure.

Syntax

EXECUTE procedure [param1[, param2[, ...]]

The EXECUTE statement has these parts:

Part Description
procedure The name of the procedure that is to be executed.
param1, param2, … Values for the parameters defined by the procedure.

See Also

PARAMETERS Declaration (Microsoft Jet SQL) PROCEDURE Clause (Microsoft Jet SQL)

Example

CREATE PROCEDURE Statement, PROCEDURE Clause Example