This content originally appeared on DEV Community and was authored by Abdur Rehman Khalid
The new capabilities provided by stored procedures, require new disciplines for MySQL developers, only some of whom will have prior experience in stored program development using other relational databases.
what is store procedure
Stored Procedures are pre-compiled code which compiled for first time and its compiled format is saved, we call the compiled saved format whenever we want.
How to create store procedure in sql ?
Stored Procedure Syntax
CREATE PROCEDURE procedure_name
AS
sql_statement
GO;
Execute a Stored Procedure
EXEC procedure_name;
This content originally appeared on DEV Community and was authored by Abdur Rehman Khalid
Abdur Rehman Khalid | Sciencx (2021-04-30T11:37:21+00:00) What is Stored Procedure in SQL. Retrieved from https://www.scien.cx/2021/04/30/what-is-stored-procedure-in-sql/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.