It's been a while since I've used Core Data or SQL, so I can't even remember how to do this or even how to search for it.
I have a list of objects
name | id |
_______|______|
John | 4 |
Betty | 7 |
Betty | 2 |
Betty | 4 |
Edward | 2 |
Edward | 4 |
John | 4 |
I want to find the id that contains Betty and Edward. This should return 2 Not 4
Any ideas?
Thanks a lot! Alex
You will have a problem with the attribute name
id
so I useuid
. Also, note that the name