I'm currently using a select statement with one column as DATEPART(hh, CallTime) AS Hour
and then doing:
GROUP BY DATEPART(hh, CallTime)
ORDER BY Hour
This displays the hours starting at midnight and going through midnight - how would I go about having this go from noon to noon? Thanks!