About 79,700 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

    What is a 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 …

  3. SQL Server Stored Procedures

    Getting started with SQL Server Stored Procedures A basic guide to stored procedures – show you how to create, execute, modify, and drop a stored procedure in SQL Server.

  4. 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 procedures …

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

    Use the CREATE statement to create a stored procedure. A stored procedure can contain one or more select, insert, update, or delete statements. The following is an example of a simple stored procedure …

  6. Create Stored Procedure in SQL Server

    Oct 31, 2023 · In this SQL Server tutorial, you will learn how to create stored procedure in SQL Server. Where I will explain the basic syntax for creating a store procedure and why we need to create a …

  7. How to Create Stored Procedures in SQL Server

    In SQL Server, a stored procedure generates an execution plan during its first run and stores it in the buffer pool. This plan can then be reused for subsequent executions, further improving performance. …

  8. SQL Server stored procedures for beginners

    SQL Server stored procedure is a batch of statements grouped as a logical unit and stored in the database. The stored procedure accepts the parameters and executes the T-SQL statements in the …

  9. How to Create and Call a Stored Procedure in SQL?

    Sep 8, 2025 · We can also pass parameters to the Stored procedures. So, we will create a database first: Step 1: Creating Database. Query: Step 2: Using Database. Query: Step 3: Create a table. …

  10. SQL Server: Procedures - TechOnTheNet

    Learn how to create and drop procedures in SQL Server (Transact-SQL) with syntax and examples. What is a procedure in SQL Server? In SQL Server, a procedure is a stored program that you can …