What I need to do is in this image. How do I do it?
This is the query I made and it is coming empty and I do not know why.
SELECT event_type, value from teste t1
Where exists (select event_type, value
from teste t2
where t2.event_type = t1.event_type
and t2.value = t1.value
group by event_type, value
having count(*) > 1)