ブール型の列を持つモデルがあります。
論理計算の結果を「その場で」(すべての結果を反復せずに)取得することは可能ですか?
例えば:
data = Model.limit(10)
# I would like to know if each data.column is true
# the result is something to this logic: data[0].column && data[1].column && ...
# ..but there is one manner to do this without iterating?
主な条件の使用: AND、OR、XOR (条件はすべて同じ - すべて AND またはすべて OR など)。