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

MySQL:seleccione filas que solo tengan valores únicos, excepto una columna

Puede aplicar el max() agregado al ID columna y luego GROUP BY el resto:

select max(id) id, SATELLITE_ID, ATT_TYPE_ID, TIME, Roll, Pitch, yaw
from attitude
group by SATELLITE_ID, ATT_TYPE_ID, TIME, Roll, Pitch, yaw
order by id

Consulte SQL Fiddle con demostración

Resultado:

| ID | SATELLITE_ID | ATT_TYPE_ID | TIME | ROLL | PITCH | YAW |
---------------------------------------------------------------
|  2 |            1 |           1 | 2012 |    1 |     2 |   1 |
|  3 |            1 |           1 | 2011 |    1 |     2 |   1 |