0

对于我的情况,我想从表中选择所有重复记录

例如

table1 

id | name | sub_name

1  | joe  | j1
2  | tim  | t1 
3  | ben  | b1    
4  | joe  | j2    
5  | tim  | t2 

我想选择

 [#<table1 id: 1, name: "joe", sub_name: "j1">, #<table1 id: 4, name: "joe", sub_name: "j2">, #<table1 id: 2, name: "tim", sub_name: "t1">, #<table1 id: 5, name: "tim", sub_name: "t2">]

 and then display

 joe
  - j1
  - j2
 tim
  - t1
  - t2

任何人都可以帮助我使用 AR 或 SQL 来做到这一点。

我试过这个查询Table1.group(:name).having("count(*) > 1"

但结果是

[#<table1 id: 1, name: "joe", sub_name: "j1">, #<table1 id: 2, name: "tim", sub_name: "t1">]

result.count返回

{["joe]=>2, ["tim"]=>2}

4

1 回答 1

2

好吧,我不知道这是否是最有效的方法,但您可以:

names_with_multiple_rows = Table1.group(:name).having("count(*) > 1")
res = names_with_multiple_rows.inject({}) do |h, m|
  h[m.name] = Table1.select(:sub_name).where(name: m.name)
  h
end

现在 res 是一个散列,其中键是名称,值是子名称。

于 2013-11-05T10:15:44.447 回答