Pickup locations by shift results
Let's see the AvgFarePerKM
,RideCount
and TotalRideMin
for the pickup locations within Manhattan during the different driver shifts of each weekday.
Diese Übung ist Teil des Kurses
Writing Functions and Stored Procedures in SQL Server
Anleitung zur Übung
- Declare
@Borough
as anvarchar(30)
variable and set it to'Manhattan'
. - Pass
@Borough
to execute thedbo.cuspPickupZoneShiftStats
stored procedure. - Admire your work. :)
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
-- Create @Borough
___ ___ AS ___(___) = '___'
-- Execute the SP
___ ___.___
-- Pass @Borough
___ = ___;