求asp统计access帖子每月数代码 20
asp统计数据库当月帖子数bgxt.mdb数据库cthuanze表中cthuanzejiancharq等于当月的帖子数有多少个显示出来如:cthuanze表cthuanz...
asp统计数据库当月帖子数
bgxt.mdb数据库cthuanze表中 cthuanzejiancharq 等于当月的帖子数有多少个显示出来
如:
cthuanze表
cthuanzeid cthuanzejiancharq
1 2011-1-1
2 2011-1-1
3 2011-1-1
4 2011-1-1
5 2011-2-2
显示2011年1月 4个帖子 2011年2月 1个帖子 展开
bgxt.mdb数据库cthuanze表中 cthuanzejiancharq 等于当月的帖子数有多少个显示出来
如:
cthuanze表
cthuanzeid cthuanzejiancharq
1 2011-1-1
2 2011-1-1
3 2011-1-1
4 2011-1-1
5 2011-2-2
显示2011年1月 4个帖子 2011年2月 1个帖子 展开
1个回答
展开全部
select year(cthuanzejiancharq)+"-"+Month(cthuanzejiancharq) as riqi,count(*) as tieshu
from [cthuanze] group by riqi
实际上,你要统计每月的发帖数,最好在数据库设计上进行优化考虑,如你的发帖日期如表示成yyyy-mm-dd格式,则使用Left(cthuanzejiancharq,7)就得到年月了,或者在数据库中增加一个表,当发帖时,自动将该月的帖子数+1即可。
from [cthuanze] group by riqi
实际上,你要统计每月的发帖数,最好在数据库设计上进行优化考虑,如你的发帖日期如表示成yyyy-mm-dd格式,则使用Left(cthuanzejiancharq,7)就得到年月了,或者在数据库中增加一个表,当发帖时,自动将该月的帖子数+1即可。
追问
select year(cthuanzejiancharq)+"-"+Month(cthuanzejiancharq) as riqi,count(*) as tieshu
from [cthuanze] group by riqi
这段代码如何加进去啊?请高手帮忙,我新手
是我每个页面连接数据库的代码
追答
你这要让我设计这个东西啊,如果说到这里还不明白,那你就好好看看网页设计的东西吧,我实在无法更详细的回答了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询