I am wondering if there is a good-performing query to select distinct dates (ignoring times) from a table with a datetime field in SQL Server.
My problem isn\'t getting
Just convert the date: dateadd(dd,0, datediff(dd,0,[Some_Column]))
dateadd(dd,0, datediff(dd,0,[Some_Column]))