一个sql查询相关的问题
有一个表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
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
select count(*) from groups where addtime>='20130101' and addtime <= '20130630' group by substring(addtime,4,2),type
2中方式:
1、使用SQL写临时表
2、建立where条件相关的索引;
临时表是个不错的选择,数据处理完就自动释放了!
用group by+1
自己研究一下怎么写
实在不行用缓存减少查询...

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Following its high-profile acquisition by Facebook in 2012, Instagram adopted two sets of APIs for third-party use. These are the Instagram Graph API and the Instagram Basic Display API.As a developer building an app that requires information from a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio
