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
I used this
SELECT DISTINCT DATE_FORMAT(your_date_column,'%Y-%m-%d') AS date FROM ...