Collections:
What Are Stored Procedures in SQL Server
What Are Stored Procedures in SQL Server Transact-SQL?
✍: FYIcenter.com
A stored procedure is a collection of Transact-SQL statements that stored in the SQL Server. A stored procedure can be executed later with an EXEC statement. SQL Server supports stored procedures with the following features:
1. Stored procedures can be divided into 3 groups based their accessing scopes:
2. Stored procedures can take input parameters.
3. Stored procedures can take output parameters.
4. Stored procedures can be mapped to references to Microsoft .NET Framework common language runtime (CLR) methods.
⇒ "CREATE PROCEDURE" - Creating Simple Stored Procedures in SQL Server
⇐ Using Stored Procedures in SQL Server Transact-SQL
2017-01-11, 1792🔥, 0💬
Popular Posts:
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...