LoslegenKostenlos loslegen

EXECUTE with OUTPUT parameter

Execute the dbo.cuspSumRideHrsSingleDay stored procedure and capture the output parameter.

Diese Übung ist Teil des Kurses

Writing Functions and Stored Procedures in SQL Server

Kurs anzeigen

Anleitung zur Übung

  • Declare @RideHrs as a numeric output parameter.
  • Execute dbo.cuspSumRideHrsSingleDay and pass '3/1/2018' as the @DateParm input parameter.
  • Store the output parameter value in @RideHrs.
  • Select @RideHrs to show the output parameter value of the SP.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

-- Create @RideHrs
___ ___ AS ___(18,0)
-- Execute the stored procedure
___ dbo.___
    -- Pass the input parameter
	___ = '3/1/2018',
    -- Store the output in @RideHrs
	@RideHrsOut = ___ ___
-- Select @RideHrs
___ @RideHrs AS RideHours
Code bearbeiten und ausführen