PROCEDURE dbo.CountCars ( @carID int ) AS SELECT Color + cartype from CarsTable where CarID = @carID
Intent: