当前位置 : 主页 > 编程语言 > ruby >

ruby-on-rails – 如何查找查询结果的大小

来源:互联网 收集:自由互联 发布时间:2021-06-23
我在rails中有以下查询: records = Record.select('y_id, source') .where(:source = source, :y_id = y_id) .group(:y_id, :source) .having('count(*) = 1') 如果我放置记录,我会得到以下输出: [#记录来源:“XYZ”,y_id:
我在rails中有以下查询:

records = Record.select('y_id, source')
                .where(:source => source, :y_id => y_id)
                .group(:y_id, :source)
                .having('count(*) = 1')

如果我放置记录,我会得到以下输出:
[#<记录来源:“XYZ”,y_id:10000009>,#<记录来源:“XYZ”,y_id:10000070>]

这看起来像输出数组中有2个元素.但是当我尝试做record.size时,我得到:
{[10000009,“XYZ”] => 1,[10000070,“XYZ”] => 1}

  • Why doesn’t records.size print 2 when records is an array having 2 elements? Is the group by query result behaving differently for some reason?

  • What should I do to get the size of records

我可能走错了路,但我认为问题与.size的工作方式有关.

Size将自动尝试确定是否调用.count或.length.这些行为如下:

> .count执行SQL COUNT
> .length计算结果数组的长度

然而,在occassion .size将返回一个哈希(因为它决定使用.count)

所以你的解决方案可能是使用.length,它将返回一个整数.

网友评论