How can I group by date time column without taking time into consideration

后端 未结 8 1167
孤独总比滥情好
孤独总比滥情好 2020-11-30 17:47

I have a bunch of product orders and I\'m trying to group by the date and sum the quantity for that date. How can I group by the month/day/year without taking the time part

8条回答
  •  借酒劲吻你
    2020-11-30 18:15

    Here's an example that I used when I needed to count the number of records for a particular date without the time portion:

    select count(convert(CHAR(10), dtcreatedate, 103) ),convert(char(10), dtcreatedate, 103)
    FROM dbo.tbltobecounted
    GROUP BY CONVERT(CHAR(10),dtcreatedate,103)
    ORDER BY CONVERT(CHAR(10),dtcreatedate,103)
    

提交回复
热议问题