Mysql
 sql >> Database >  >> RDS >> Mysql

Come raggruppare le righe successive (in base a un criterio) e quindi contarle [MySQL]?

Per farlo ho usato un paio di variabili, la struttura della tabella, ho creato la mia solo per il test ed è:

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  )

la query è finita così:

set @a:='';
set @counter:=1;
set @groupby:=0;
select *,count(REPEATED) from (select name,if(@a=name,@counter:[email protected]+1,@counter:=1) as rep,if(@counter=1,@groupby:[email protected]+1,@groupby) as repeated,@a:=name type from abc) as t group by repeated

puoi vedere che funziona in SQLFIDDLE se hai qualche domanda fammi sapere.

In SQLFIDDLE