婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > SQLserver 實現分組統計查詢(按月、小時分組)

SQLserver 實現分組統計查詢(按月、小時分組)

熱門標簽:長沙智能外呼系統 電銷機器人公司 需要哪些牌照 知名電銷機器人價格 廣東防封卡外呼系統原理是什么 分享百度地圖標注多個位置 外呼系統改進 湖南電腦外呼系統平臺 地圖標注牌 菏澤語音電銷機器人加盟公司

設置AccessCount字段可以根據需求在特定的時間范圍內如果是相同IP訪問就在AccessCount上累加。

復制代碼 代碼如下:

Create table Counter
(
CounterID int identity(1,1) not null,
IP varchar(20),
AccessDateTime datetime,
AccessCount int
)

該表在這兒只是演示使用,所以只提供了最基本的字段
現在往表中插入幾條記錄
insert into Counter
select '127.0.0.1',getdate(),1 union all
select '127.0.0.2',getdate(),1 union all
select '127.0.0.3',getdate(),1

1 根據年來查詢,以月為時間單位
通常情況下一個簡單的分組就能搞定
復制代碼 代碼如下:

select
convert(varchar(7),AccessDateTime,120) as Date,
sum(AccessCount) as [Count]
from
Counter
group by
convert(varchar(7),AccessDateTime,120)

像這樣分組后沒有記錄的月份不會顯示,如下:

這當然不是我們想要的,所以得換一種思路來實現,如下:
復制代碼 代碼如下:

declare @Year int
set @Year=2009
select
m as [Date],
sum(
case when datepart(month,AccessDateTime)=m
then AccessCount else 0 end
) as [Count]
from
Counter c,
(
select 1 m
union all select 2
union all select 3
union all select 4
union all select 5
union all select 6
union all select 7
union all select 8
union all select 9
union all select 10
union all select 11
union all select 12
) aa
where
@Year=year(AccessDateTime)
group by
m

查詢結果如下:

2 根據天來查詢,以小時為單位。這個和上面的類似,代碼如下:
復制代碼 代碼如下:

declare @DateTime datetime
set @DateTime=getdate()
select
right(100+a,2)+ ':00 -> '+right(100+b,2)+ ':00 ' as DateSpan,
sum(
case when datepart(hour,AccessDateTime)> =a
and datepart(hour,AccessDateTime) b
then AccessCount else 0 end
) as [Count]
from Counter c ,
(select 0 a,1 b
union all select 1,2
union all select 2,3
union all select 3,4
union all select 4,5
union all select 5,6
union all select 6,7
union all select 7,8
union all select 8,9
union all select 9,10
union all select 10,11
union all select 11,12
union all select 12,13
union all select 13,14
union all select 14,15
union all select 15,16
union all select 16,17
union all select 17,18
union all select 18,19
union all select 19,20
union all select 20,21
union all select 21,22
union all select 22,23
union all select 23,24
) aa
where datediff(day,@DateTime,AccessDateTime)=0
group by right(100+a,2)+ ':00 -> '+right(100+b,2)+ ':00 '

查詢結果如下圖:

您可能感興趣的文章:
  • sql server遞歸子節點、父節點sql查詢表結構的實例
  • SQL Server 樹形表非循環遞歸查詢的實例詳解
  • 使用SqlServer CTE遞歸查詢處理樹、圖和層次結構
  • 使用SQLSERVER 2005/2008 遞歸CTE查詢樹型結構的方法
  • SQLSERVER2005 中樹形數據的遞歸查詢
  • SQLserver2008使用表達式遞歸查詢
  • 高效的SQLSERVER分頁查詢(推薦)
  • SQL Server SQL高級查詢語句小結
  • Sql server2005 優化查詢速度50個方法小結
  • sqlserver 模糊查詢常用方法
  • sql server實現遞歸查詢的方法示例

標簽:珠海 福建 天水 呼和浩特 商洛 西寧 美容院 泉州

巨人網絡通訊聲明:本文標題《SQLserver 實現分組統計查詢(按月、小時分組)》,本文關鍵詞  SQLserver,實現,分組,統計,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《SQLserver 實現分組統計查詢(按月、小時分組)》相關的同類信息!
  • 本頁收集關于SQLserver 實現分組統計查詢(按月、小時分組)的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 衡阳县| 襄樊市| 洱源县| 澄江县| 阳江市| 恩施市| 遂溪县| 禄劝| 伽师县| 屯门区| 金堂县| 周至县| 新龙县| 永顺县| 沧源| 新沂市| 平武县| 秭归县| 玉树县| 丹东市| 孝昌县| 南郑县| 织金县| 牟定县| 澄城县| 积石山| 宁明县| 偃师市| 雷州市| 龙江县| 隆德县| 平远县| 连南| 庆阳市| 建宁县| 洛南县| 洛宁县| 滨州市| 三都| 云阳县| 卢龙县|