Answers for "why use stored procedure in sql"

SQL
2

Explain the Stored Procedure

Stored Procedure :
A stored procedure is a prepared SQL code that you can save, 
so the code can be reused over and over again.

So if you have an SQL query that you write over and over again, 
save it as a stored procedure, and then just call it to execute it.

You can also pass parameters to a stored procedure, 
so that the stored procedure can act based on the parameter value(s) 
that is passed.
Posted by: Guest on July-10-2021
1

stored procedure sql

-- without parameters; create
CREATE [OR ALTER] PROCEDURE <pname>
AS
BEGIN
<PROCEDURE BODY/ STATEMENTS>
END

-- call procedure
EXECUTE / EXEC <pname>;
(OR)
EXECUTE / EXEC <pname> VALUE / (S)
Posted by: Guest on January-03-2022
-1

what is a stored procedure

SQL Stored Procedure
Posted by: Guest on September-28-2021

Code answers related to "why use stored procedure in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language