About 362,000 results
Open links in new tab
  1. SQL Server Stored Procedure with Parameters

    Apr 22, 2025 · In this tutorial topic we will cover how to create SQL Server stored procedures that use input parameters.

  2. Specify Parameters in a Stored Procedure - SQL Server

    5 days ago · Learn how to pass values into parameters and about how each of the parameter attributes is used during a procedure call.

  3. SQL Stored Procedures - W3Schools

    Just list each parameter and the data type separated by a comma as shown below. The following SQL statement creates a stored procedure that selects Customers from a particular City with a particular …

  4. sql - How do I pass a list as a parameter in a stored procedure ...

    The preferred method for passing an array of values to a stored procedure in SQL server is to use table valued parameters. First you define the type like this: Then you use that type in the stored procedure: …

  5. SQL procedure with parameters

    In this example, we’ve created a procedure named usp_GetEmployeeInfo with two parameters: @EmployeeID and @DepartmentID. The procedure selects employee information from the …

  6. Stored Procedure Parameters: Input, Output, Optional

    Here you will learn about stored procedure parameters, optional parameters, and executing stored procedures with parameters in SQL Server.

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

    5 days ago · 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 System …

  8. Call Stored Procedure with Parameters in C#: Step-by-Step Insert ...

    1 day ago · Call Stored Procedure with Parameters in C#: Step-by-Step Insert Example for Button Click Events Stored procedures are precompiled SQL queries stored in a database, offering benefits like …

  9. How to create a Parameterized Stored Procedure in SQL? - w3resource

    Oct 4, 2025 · Learn how to create a reusable stored procedure in SQL that accepts parameters and retrieves filtered data from a database.

  10. Optional parameters in SQL Server stored procedure

    Jan 8, 2023 · Declare the parameter as so: Now you don't even have to pass the parameter in. It will default to NULL (or whatever you choose to default to). Are you sure you don't need it? OMG Ponies, …