QuestionQ190
Maintain a data analytics solutionYou have a Fabric warehouse containing two tables named DimDate and Trips.
DimDate contains the following fields.

Trips contains the following fields.

You need to compare the average miles per trip for statutory holidays with non-statutory holidays.
How should you complete the T-SQL statement?
Select
Select d.IsHoliday, as MilesPerTrip from dbo.Trips t inner join dbo.DimDate d on t.dateID = d.DateID d.IsHoliday
Community Discussion