假设我有这样一张桌子(按日期排序):
id | name | type | date
1 | A | 1 | 01-08-2012
2 | A | 2 | 01-08-2012
3 | B | 1 | 02-09-2012
4 | A | 1 | 01-10-2012
5 | A | 4 | 01-10-2012
6 | A | 5 | 02-10-2012
我想对具有相同“name”值的后续行进行分组并计算它们:
name | count
A | 2
B | 1
A | 3
我正在考虑编写存储过程并使用游标,但我也想知道,如果有一个更简单的解决方案,例如使用嵌套的SELECT等等。
我的问题非常类似于:how to group array and count them,但那个问题与PHP有关。
答案 0 :(得分:1)
为此,我使用了几个变量, 表结构,我创建了自己的测试,它是:
create table abc (id int, name varchar(20),type int);
insert into abc values
( 1 , 'A' , 1 ),
( 2 , 'A' , 2 ),
( 3 , 'B' , 1 ),
( 4 , 'A' , 1 ),
( 5 , 'A' , 4 ),
( 6 , 'A' , 5 )
查询结束如下:
set @a:='';
set @counter:=1;
set @groupby:=0;
select *,count(REPEATED) from (select name,if(@a=name,@counter:=@counter+1,@counter:=1) as rep,if(@counter=1,@groupby:=@groupby+1,@groupby) as repeated,@a:=name type from abc) as t group by repeated
如果您有任何问题请告诉我,您可以在SQLFIDDLE看到它。
在SQLFIDDLE
中