欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

一个sql查询相关的问题

程序员文章站 2022-05-12 18:14:11
...
有一个表groups,下面有很多个字段
id
user
cost
type
addtime
uptime
note
.....

type里面有5个类型,分别是001-005,
现在要的结果就是查询最近6个月,001-005的总数,
比如查询一月份,1号到31号,TYPE为001-005的数据
select count(*) from groups where type='001' and addtime= '20130130'
select count(*) from groups where type='002' and addtime= '20130230'
select count(*) from groups where type='003' and addtime= '20130330'
select count(*) from groups where type='004' and addtime= '20130430'
select count(*) from groups where type='005' and addtime= '20130530'
查询6个月的话就需要查询30次。
如果有很多人登录这个系统,查询这样的SQL很耗费时间,我试过如果同时三个人都打开这个页面,大概反应时间要3秒以上
我的思路就是有没有办法把这些查询结果写到一个表里面,这样查询的时候我直接查询的表的数据 ,然后这些SQL的数据我可以设置一个时间
自动查询结果然后更新到一个表里面。这样我直接从表里面查询数据比用 count查询来得快,但是这个应该怎么实现呢,我现在用的就是最笨的
办法,一个一个来查询,好卡啊。


回复讨论(解决方案)

select count(*) from groups where type in('001','002','003','004','005') and addtime>='20130101' and addtime

select count(*) from groups where type in('001','002','003','004','005') and addtime>='20130101' and addtime
你好,谢谢回复,这样查询出来就是一个总和,我想要单独的一个值
比如TYPE =001 一月份 总数是 20
TYPE=002 1月份 总数是500
TYPE=003 1月份 总数是3987
TYPE=004 1月份 总数是9898
TYPE=005 1月份 总数是123

select count(*) from groups where addtime>='20130101' and addtime   

select type, left(addtime,6) as addtime, count(*) as cnt from groups group by 1, 2

那连in都不用了 group by type, DATE_FORMAT(addtime,‘m%’) 这样试一下

select count(*) from groups where addtime>='20130101' and addtime   

select count(*) from groups where addtime>='20130101' and addtime   

2中方式:
1、使用SQL写临时表
2、建立where条件相关的索引;

临时表是个不错的选择,数据处理完就自动释放了!

用group by+1
自己研究一下怎么写
实在不行用缓存减少查询...