“SQL gespeicherte Prozedur mit Ausgabeparametern” Code-Antworten

SQL gespeicherte Verfahrensausgabeparameter

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 gespeicherte Prozedur mit Ausgabeparametern

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 gespeicherte Prozedur mit Ausgabeparametern”

Fragen ähnlich wie “SQL gespeicherte Prozedur mit Ausgabeparametern”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen