About 1,040,000 results
Open links in new tab
  1. SQL - Stored Procedures - Online Tutorials Library

    SQL Stored Procedures An SQL stored procedure is a group of pre-compiled SQL statements (prepared SQL code) that can be reused by simply calling it whenever needed. It can be used to perform a …

  2. 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 statements, …

  3. SQL Server Tutorial

    The SQL Server Tutorial website offers practical tutorials with many hands-on examples to help you learn SQL Server quickly and effectively.

  4. SQL Stored Procedures - GeeksforGeeks

    Feb 15, 2026 · What is the most significant, yet subtle, difference between a user-defined stored procedure and a system stored procedure in SQL Server?

  5. SQL Server stored procedures for beginners

    In this article, we will learn how to create stored procedures in SQL Server with different examples. SQL Server stored procedure is a batch of statements grouped as a logical unit and stored in the …

  6. 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 stored …

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

    Nov 18, 2025 · CREATE PROCEDURE creates a Transact-SQL or common language runtime (CLR) stored procedure.

  8. SQL Stored Procedure Tutorial - TechChannel

    Feb 1, 2017 · How to use a SQL stored procedure for data retrieval to feed a DB2 Web Query for i dashboard document.

  9. PL/SQL - Procedures - Online Tutorials Library

    In this chapter, we will discuss Procedures in PL/SQL. A subprogram is a program unit/module that performs a particular task. These subprograms are combined to form larger programs.

  10. Stored Procedures (Database Engine) - SQL Server

    Nov 20, 2025 · Learn how a stored procedure in SQL Server is a group of one or more Transact-SQL statements or a reference to a .NET Framework common runtime language method.