How would the query below properly return results by days, instead of a traditional time result 'YYYY-MM-DD 00:00:00:000'?
select o.CustomerID, (max(o.OrderDate) - min(o.ShippedDate)) as 'Ship Time'
from Orders o
group by o.CustomerID
As always, appreciate the help!