SQL Stored ProcedureA stored procedure in Structured Query Language is a group of logical statements stored in the database for performing a particular task. It is a subprogram consisting of a name, a list of parameters, and Transact-SQL statements. Any user can store the stored procedure as a named object in the SQL database and can call it by using triggers, other procedures, and other programming applications such as Java, PHP, R, C#, Python, etc. SQL database creates an execution plan and stores it in the cache memory when the stored procedure is called for the first time. The plan is reused by SQL Server, which executes the stored procedure quickly with reliable performance. Types of Stored ProcedureFollowing are the two types of Stored Procedures in SQL:
User-defined Stored ProceduresUser-defined Stored Procedures are created by the database developers and administrators and stored in the current database. This type of stored procedure provides one or more SQL statements for retrieving, updating, and deleting values from database tables. User-Defined stored procedure is further categorized into the following two types:
T-SQL Stored Procedure The Transact-SQL procedure accepts the parameters and returns them. This stored procedure manages INSERT, UPDATE, and DELETE statements with or without parameters and gives the row data in the output. CLR Stored Procedure CLR stored procedure is that stored procedure which is created by the combination of CLR (Common Language Runtime) and another stored procedure written in a CLR-based language like C# and VB.NET. CLR procedures are the objects of .Net Framework, which execute in the memory of the SQL database server. System Stored ProceduresSQL database server creates and executes the system stored procedures for administrative activities. SQL database server does not allow developers to interfere with system stored procedures. Syntax of Stored Procedure in SQL The following syntax is used to create the simple stored procedure in Structured Query Language: The following syntax is used to execute the stored procedure in Structured Query Language: Example of Stored Procedure in SQLFirstly, we have to create the table and insert the data into the table in SQL. The following query creates the Student_Stored_Procedure table using the CREATE TABLE statement: The following SQL queries insert the record of students into the above table using INSERT INTO statement: Let's see the record of the above table using the following SELECT statement:
The following query creates the stored procedure which selects all the records from the above Student_Stored_Procedure table: Now, execute the stored procedure using the following query to see its output: Output:
Stored Procedure with One ParameterThe syntax for creating the stored procedure with one parameter is given below: The syntax for executing the stored procedure with one parameter is given below: The following query creates the stored procedure which shows the students of a particular course from the above table: The following query executes the above-stored procedure and shows the record of B.tech students in the output: Output:
Stored Procedure with Multiple ParametersThe syntax for creating the stored procedure with more than one parameter is given below: The syntax for executing the stored procedure with multiple parameters is given below: The following query creates the stored procedure which shows the students of a particular course with a particular age from the above table: The following query executes the stored procedure and shows the record of those students in the output whose course is B.tech and Age is 20: Advantages of Stored Procedures in SQLFollowing are the important benefits or advantages of stored procedure in Structured Query Language:
Next TopicSQL SELECT AVG |