“SQL Server Ausgabeparameter” Code-Antworten

SQL -Ausgangsparameter

CREATE PROCEDURE uspFindProductByModel (
    @model_year SMALLINT,
    @product_count INT OUTPUT
) AS
BEGIN
    SELECT 
        product_name,
        list_price
    FROM
        production.products
    WHERE
        model_year = @model_year;

    SELECT @product_count = @@ROWCOUNT;
END;
Code language: SQL (Structured Query Language) (sql)
KeWols

SQL Server Ausgabeparameter

CREATE PROCEDURE uspFindProductByModel (
    @model_year SMALLINT,
    @product_count INT OUTPUT
) AS
BEGIN
    SELECT 
        product_name,
        list_price
    FROM
        production.products
    WHERE
        model_year = @model_year;

    SELECT @product_count = @@ROWCOUNT;
END;
Tiny Coders

Ähnliche Antworten wie “SQL Server Ausgabeparameter”

Fragen ähnlich wie “SQL Server Ausgabeparameter”

Weitere verwandte Antworten zu “SQL Server Ausgabeparameter” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen