from ResultAnnotation ra where
ra.group.job.name = 'XPLE-B34' and ra.severity = 'FAILURE'
and not exists (from ResultAnnotation rb where
rb.group.job.name = 'XPLE-B33' and rb.severity = 'FAILURE'
and rb.target = ra.target and rb.detailTarget = ra.detailTarget)
ou pour la requête plus simple ça donnerait:
from Cat as cat
where not exists (from DomesticCat domcat where
domcat.name=cat.name and domcat.color=cat.color)
# j'ai trouvé
Posté par metcox . En réponse au message hql et tuple. Évalué à 1.
ou pour la requête plus simple ça donnerait: