About 291,000 results
Open links in new tab
  1. 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 …

  2. 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.

  3. SQL Stored Procedures - GeeksforGeeks

    Jul 12, 2025 · By using stored procedures, we can automate tasks, minimize the risk of SQL injection, and ensure consistent execution of complex SQL logic. Stored procedures are …

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

  5. SQL Stored Procedures (With Examples) - Programiz

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

  6. SQL Stored procedures

    A stored procedure in SQL is a precompiled collection of one or more SQL statements that are stored and can be executed as a single unit. It is typically used to encapsulate a set of …

  7. Stored procedures — Interactive SQL Course

    Creating and using stored procedures in SQL. Syntax, parameters, conditional logic, loops, and practical examples.

  8. SQL - Stored Procedures - Online Tutorials Library

    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.

  9. SQL Stored Procedure: Automate and Optimize Queries

    Jan 8, 2025 · Creating a stored procedure in MySQL involves defining the procedure's name, parameters, and the SQL statements that make up its body.

  10. 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 …