SQL语句。表里面都是去年的数据。现在要统计以前每一天跟每一个月的数据的总数。SQL语句怎么写。
2个回答
展开全部
--每天数据量
select convert(char(8),date,112) 年月日,COUNT() ROW_COUNT
FROM TableName
group by convert(char(8),date,112)
--每月数据量
select convert(char(6),date,112) 年月,COUNT(*) ROW_COUNT
FROM TableName
group by convert(char(6),date,112)
--如果只有一年,每月数据量也可以如下:
select MONTH(date) 月,COUNT(*) ROW_COUNT
FROM TableName
group by MONTH(date)
select convert(char(8),date,112) 年月日,COUNT() ROW_COUNT
FROM TableName
group by convert(char(8),date,112)
--每月数据量
select convert(char(6),date,112) 年月,COUNT(*) ROW_COUNT
FROM TableName
group by convert(char(6),date,112)
--如果只有一年,每月数据量也可以如下:
select MONTH(date) 月,COUNT(*) ROW_COUNT
FROM TableName
group by MONTH(date)
追问
比如表里面有2010年8,9,10月份的数据。那怎么统计每天跟每月的数据的总数啊。能具体点吗。
追答
时间字段的格式是什么样子的?一个datetime类型的字段?
展开全部
--每天数据量
select convert(char(8),date,112) 年月日,COUNT() ROW_COUNT
FROM TableName
group by convert(char(8),date,112)
每月数据量
select convert(char(6),date,112) 年月,COUNT(*) ROW_COUNT
FROM TableName
group by convert(char(6),date,112)
select convert(char(8),date,112) 年月日,COUNT() ROW_COUNT
FROM TableName
group by convert(char(8),date,112)
每月数据量
select convert(char(6),date,112) 年月,COUNT(*) ROW_COUNT
FROM TableName
group by convert(char(6),date,112)
追问
比如表里面有2010年8,9,10月份的数据。那怎么统计每天跟每月的数据的总数啊。能具体点吗。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询