一个sql查询相关的问题

WBOY
Release: 2016-06-23 14:01:05
Original
965 people have browsed it

有一个表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 <= '20130630' group by addtime,type
Copy after login

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 <= '20130630' group by MONTH(addtime),type
Copy after login

select count(*) from groups where addtime>='20130101' and addtime <= '20130630' group by substring(addtime,4,2),type
Copy after login

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

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

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!