Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select WeekDay(M.[Visit_Date]) As [Week Day],
Count(*) As [CountOfWeekDay],
(Count(*) /
(Select Number
From
(Select WD, Count(*) As [Number]
From
(SELECT DISTINCT cdate(int(X.[Visit_Date])) As [Sale Date],
WeekDay(X.[Visit_Date]) As WD
FROM BreakDown AS X) As Q
Group By WD ) As J
Where J.WD=WeekDay(M.[Visit_Date]) ) As [AverageValue]
From BreakDown As M
Group By WeekDay(M.[Visit_Date])