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

Consulta SQL para obtener la lista de acuerdos

Puede probar la siguiente consulta:

select PhotoId,
       max(FeatureCheck),
       max(Result),
       max(CheckedBy),
       min(CheckedBy)
from MyTable
group by PhotoId
having count(distinct FeatureCheck) = 1
   and count(distinct Result) = 1