我正在尝试删除更多只有一个ID。我目前正在使用Person.find(1).destroy
。
有没有办法可以选择多个数据记录呢?
答案 0 :(得分:5)
是。您可以在控制台中编写脚本。
Person.find_each do |person|
if # condition for deleting
person.destroy
end
end
或者,如果您知道所有ID ...您可以使用where子句然后销毁所有这些。
ids = [1,2,3,4,5]
people = Person.where(id: ids) # where can take an array of ids
people.each { |person| person.destroy }