Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Model User with an attribute, let's call it keyValue.

I want to select the userId of all Users who has at least other user with the same keyValue. In other words, I want to select all Users with duplicated keyValue in the DB.

I think that in SQL it would be something like this:

SELECT userID FROM users WHERE count(keyValue) > 1;
share|improve this question
Apple provides a good example of this in their SharedCoreData sample project, in a method that removes duplicate entries based on a specific key. – Tom Harrington Jan 19 at 22:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.