About 994,000 results
Open links in new tab
  1. Create a stored procedure - SQL Server | Microsoft Learn

    This article describes how to create a SQL Server stored procedure by using SQL Server Management Studio and by using the Transact-SQL CREATE PROCEDURE statement.

  2. SQL Stored Procedures - W3Schools

    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 …

  3. SQL Stored Procedures - GeeksforGeeks

    Jul 12, 2025 · What is a SQL Stored Procedure? A SQL Stored Procedure is a collection of SQL statements bundled together to perform a specific task. These procedures are stored in the …

  4. Creating a simple SQL Server stored procedure

    Apr 22, 2025 · As mentioned in the tutorial overview a stored procedure is nothing more than stored SQL code that you would like to use over and over again. In this example we will look at …

  5. SQL Server Stored Procedures: Create, Alter, Rename, Execute

    In SQL Server, a stored procedure is a set of T-SQL statements which is compiled and stored in the database. The stored procedure accepts input and output parameters, executes the SQL …

  6. SQL Server Stored Procedures

    Dynamic SQL – learn how to construct general-purpose and flexible SQL statements using the dynamic SQL technique. This section introduces you to the SQL Server stored procedures. …

  7. SQL Server Stored Procedures: Creating, Executing, and Best …

    Any SQL stored procedure is a prepared collection of one or more SQL statements saved in the database for reuse. Instead of writing the same SQL queries repeatedly to perform a task, you …

  8. CREATE PROCEDURE (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Creates a Transact-SQL or common language runtime (CLR) stored procedure in SQL Server, Azure SQL Database, SQL database in Microsoft Fabric, and Analytics Platform …

  9. Create Stored Procedure in SQL Server

    Oct 31, 2023 · First, you need to know ‘What is the stored procedure in SQL Server?’. SQL stored procedure is a precompiled or prepared set of one or more SQL statements that you can …

  10. SQL Server Stored Procedure Tutorial

    Apr 22, 2025 · Take a look through each of these topics of this tutorial to learn how to get started with stored procedure development for SQL Server. This tutorial look at how to create stored …