PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come eseguire questa query ActiveRecord di gruppo in postgres

Penso che il meglio che potresti ottenere sia ottenere nomi utente per record duplicati. Ciò può essere ottenuto con

User.select(:username).group(:username).having('COUNT(username) > 1')