About 185,000 results
Open links in new tab
  1. SQL Stored Procedures for SQL Server - 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 …

  2. Create a stored procedure - SQL Server | Microsoft Learn

    Jan 22, 2025 · Learn how to create a Transact-SQL stored procedure by using SQL Server Management Studio and by using the Transact-SQL CREATE PROCEDURE statement.

  3. SQL Stored Procedures - GeeksforGeeks

    Apr 18, 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. Stored procedure - Wikipedia

    A stored procedure (also termed prc, proc, storp, sproc, StoPro, StoredProc, StoreProc, sp, or SP) is a subroutine available to applications that access a relational database management …

  5. SQL Server stored procedures for beginners - SQL Shack

    Jul 29, 2019 · 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 …

  6. What Is a Stored Procedure and How Does It Work - Baeldung

    Aug 8, 2024 · Learn about the concept of a stored procedure in SQL with practical examples and explore how it can be beneficial when working with databases.

  7. A Basic Guide to SQL Server Stored Procedures - SQL Server …

    Modifying a stored procedure. To modify an existing stored procedure, you use the ALTER PROCEDURE statement. First, open the stored procedure to view its contents by right-clicking …

  8. SQL Stored Procedures (With Examples) - Programiz

    In this tutorial, you will learn about stored procedures in SQL with the help of examples.

  9. sql - What is a stored procedure? - Stack Overflow

    Dec 31, 2019 · A stored procedure is a group of SQL statements that has been created and stored in the database. A stored procedure will accept input parameters so that a single …

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

    Sep 3, 2024 · Use this statement to create a permanent procedure in the current database or a temporary procedure in the tempdb database. Note. The integration of .NET Framework CLR …