What is the best way to find records with duplicate values in a column using ruby and the new Activerecord?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Translating @TuteC into ActiveRecord:
|
|||
|
In Rails 2.x, select is a private method of AR class. Just use find():
|
|||||
|
|
With custom SQL, this finds
|
||||
|
|
|
Here's how I solved it with the AREL helpers, and no custom SQL:
Really, it's just a nicer way to write the SQL. This finds all records that have duplicate last_name values, and tells you how many and what the last names are in a nice hash. |
|||
|
|