简体   繁体   English

每个日期的SQL计数

[英]SQL Count for each date

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 the last 10 days. 现在,我需要在过去10天内针对每天的潜在客户数量进行报告。

Lets say the table looks like this: 让我们说这个表看起来像这样:

tbl_leads
id int,
first_name nvarchar(100),
last_name nvarchar(100),
created_date datetime

And I need to count the number of leads for each day, 10 days total. 我需要计算每天的潜在客户数量,总计10天。 SO the result set should look something like this: 所以结果集看起来应该是这样的:

counted_leads | count_date
5             | 2009-04-30
7             | 2009-04-29
5             | 2009-04-28
7             | 2009-04-27

... and so on ... 等等

Anyone know how to do this the best possible way? 谁知道如何以最好的方式做到这一点? My current solution is iterating with a foreach in c# but I would very much like to hand it on the sql server instead in a sp. 我目前的解决方案是在c#中使用foreach进行迭代,但我非常希望将它交给sql服务器而不是sp。

You can use: 您可以使用:

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

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: 您的created_date字段是datetime ,因此如果您想按日期datetime ,则需要在分组工作之前剥去时间:

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

当你将一个DateTime转换为一个int时,它会在中午“截断”,你可能想要将这一天剥离出去

cast(DATEADD(DAY, DATEDIFF(DAY, 0, created_date), 0) as int) as DayBucket

It is most efficient to do your aggregation by integer and then convert back to datetime for presentation. 按整数进行聚合最有效,然后转换回日期时间进行演示。

select 
    cast(daybucket - 1 as datetime) as count_date,
    counted_leads
from 
    (select 
         cast(created_date as int) as DayBucket,
         count(*) as counted_leads
     from mytable
     group by cast(created_date as int) ) as countByDay

I had similar question however mine involved a column Convert(date,mydatetime). 我有类似的问题,但我涉及一列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)
CREATE PROCEDURE [dbo].[sp_Myforeach_Date]
    -- Add the parameters for the stored procedure here
    @SatrtDate as DateTime,
    @EndDate as dateTime,
    @DatePart as varchar(2),
    @OutPutFormat as int 
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    Declare @DateList Table
    (Date varchar(50))

    WHILE @SatrtDate<= @EndDate
    BEGIN
    INSERT @DateList (Date) values(Convert(varchar,@SatrtDate,@OutPutFormat))
    IF Upper(@DatePart)='DD'
    SET @SatrtDate= DateAdd(dd,1,@SatrtDate)
    IF Upper(@DatePart)='MM'
    SET @SatrtDate= DateAdd(mm,1,@SatrtDate)
    IF Upper(@DatePart)='YY'
    SET @SatrtDate= DateAdd(yy,1,@SatrtDate)
    END 
    SELECT * FROM @DateList
END

Just put this Code and call the SP in This way 只需输入此代码并以这种方式调用SP

exec sp_Myforeach_Date @SatrtDate='03 Jan 2010',@EndDate='03 Mar 2010',@DatePart='dd',@OutPutFormat=106

Thanks Suvabrata Roy ICRA Online Ltd. Kolkata 感谢Suvabrata Roy ICRA Online Ltd. Kolkata

Select count(created_date) total
     , created_dt
  from table
group by created_date
order by created_date desc

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM