SQL Count for each date

后端 未结 7 671
盖世英雄少女心
盖世英雄少女心 2021-02-03 21:57

I have the following need

I have a logging table which logs som leads generated each day.

Now I need to pull a report over the amount of leads for each day over

7条回答
  •  臣服心动
    2021-02-03 22:47

    Your created_date field is datetime, so you'll need to strip off the time before the grouping will work if you want to go by date:

    SELECT COUNT(created_date), created_date 
    FROM table 
    WHERE DATEDIFF(created_date, getdate()) < 10
    GROUP BY convert(varchar, created_date, 101)
    

提交回复
热议问题