This is my code:
SELECT DATEDIFF(shippedDate, orderDate) AS '# Days', COUNT(*)
FROM datenumtest2
GROUP BY '# Days'
ORDER BY '# Days'
the results give me:
In the # Days, there are 3 number 5's. I would like the output in my code to be
Days: 5 COUNT(*): 3
Any help is greatly appreciated