How to add your knowledge

Calling Stored Procedure with in parameters

    Table of contents
    No headers
    PROCEDURE dbo.CountCars
     (
     @carID int
     )
    AS
     SELECT Color + cartype from CarsTable where CarID = @carID

    Intent: