SQL Count for each date

后端 未结 7 803
盖世英雄少女心
盖世英雄少女心 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:45

    I had similar question however mine involved a column Convert(date,mydatetime). I had to alter the best answer as follows:

    Select
         count(created_date) as counted_leads,
         Convert(date,created_date) as count_date 
    from table
    group by Convert(date,created_date)
    

提交回复
热议问题