select count("Status") as Total_Count from "dbo" where "Status" = 'Pass' and "StartDateTime" BETWEEN '2020-11-01 15:00:00' AND '2020-11-01 16:00:00' group by "Status" How to get data for every 1 hour interval as in the image above? As currently i changing the time interval manualy. I want get the counts from 12am to 12am next day with 1 hour interval.
