In many dialects of SQL, the execute statement is used to invoke a stored procedure.
In many dialects of SQL, the execute
or exec
statement is used to invoke a stored procedure.
For example:
CREATE PROCEDURE MyStoredProc @myParam NVARCHAR(500)
AS
BEGIN
...
END
GO
EXEC MyStoredProc @myParam = N'Testing'
Related Topics