Blanking out on how to get this data:
I have a table like this:
====================
ID | Source
====================
1 | google
1 | fb
1 | linkedIn
1 | linkedIn
3 | linkedIn
3 | fb
I want to return all the Ids that have 3 sources.
So in the above table, I want the result set to contain only id 1 since it was hit across 3 sources.
Database is mysql 5.7 so anything functions on 8.0 only won't work. Thanks for any help!