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

Query SQL per ottenere l'elenco degli accordi

Puoi provare sotto la query:

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