Mulai sekarangMulai gratis

EXEC scalar

You created the SumRideHrsSingleDay function earlier in this chapter. Execute that function using the EXEC keyword and store the result in a local variable.

Latihan ini merupakan bagian dari kursus

Writing Functions and Stored Procedures in SQL Server

Lihat Kursus

Instruksi latihan

  • Create a local numeric variable named @RideHrs.
  • Use EXEC to execute the SumRideHrsSingleDay function and pass '3/5/2018' as the input parameter.
  • Store the result of the function in @RideHrs variable.

Latihan interaktif langsung praktik

Cobalah latihan ini dengan melengkapi kode contoh ini.

-- Create @RideHrs
___ ___ AS ___
-- Execute SumRideHrsSingleDay function and store the result in @RideHrs
___ ___ = dbo.___ @DateParm = '3/5/2018' 
SELECT 
  'Total Ride Hours for 3/5/2018:', 
  @RideHrs
Edit dan Jalankan Kode