sql >> Base de Datos >  >> RDS >> Mysql

Filtrado y agrupación de datos de la tabla con pares clave/valor

Parte de su problema es que está usando una función agregada en la lista SELECCIONAR pero no está usando un GROUP BY . Deberías estar usando un GROUP BY similar a esto:

GROUP BY d.testId, d.rowId

Siempre que esté utilizando una función agregada y tenga otras columnas en su selección, deben estar en un grupo por. Entonces su consulta completa debería ser:

select d.testId,
  d.rowId,
  max(if(f.keyName='voltage',f.keyValue,NULL)) as 'voltage',
  max(if(f.keyName='temperature',f.keyValue,NULL)) as 'temperature',
  max(if(f.keyName='velocity',f.keyValue,NULL)) as 'velocity' 
from tests t  
inner join data d 
  on t.testId = d.testId  
inner join data c 
  on t.testId = c.testId 
  and c.rowId = d.rowId  
join data f 
  on f.testId = t.testId 
  and f.rowId = d.rowId  
where (d.keyName = 'voltage' and d.keyValue < 5) 
  and (c.keyName = 'temperature' and c.keyValue = 30) 
  and (t.testType = 'testType1')
GROUP BY d.testId, d.rowId

Tenga en cuenta que su estructura de datos real no se presenta en su pregunta original. Parece que esto se puede consolidar en lo siguiente:

select d.testid,
  d.rowid,
  max(case when d.keyName = 'voltage' and d.keyValue < 5 then d.keyValue end) voltage,
  max(case when d.keyName = 'temperature' and d.keyValue =30 then d.keyValue end) temperature,
  max(case when d.keyName = 'velocity' then d.keyValue end) velocity
from tests t
left join data d
  on t.testid = d.testid
group by d.testid, d.rowid

Consulte SQL Fiddle con demostración . Esto da el resultado con solo una unión a los data tabla:

| TESTID | ROWID | VOLTAGE | TEMPERATURE | VELOCITY |
-----------------------------------------------------
|      1 |     1 |       4 |          30 |       20 |
|      1 |     2 |       4 |          30 |       21 |
|      2 |     1 |       4 |          30 |       30 |
|      2 |     2 |       4 |          30 |       31 |