3
我想基於poll_records表更新users表中的number_of_votes。在軌道上,它看起來像基於計數的更新
User.all.each do |user|
user.number_of_votes = user.poll_records.where("poll_record_type = 3").size
user.save
end
我是PostgreSQL的新手。我如何以這種方式更新用戶?
Psst:在AND之前加'where 1 = 1'。 – wildplasser
@wildplasser:修正了WHERE子句,thanx。 –