ActiveRecord如何找出NULL字段

时间:2013-04-04 16:32:39

标签: ruby-on-rails activerecord rails-activerecord

我如何过滤NULL字段

no_repeat = Events.where(:repeat => NULL)

NULL字不起作用

1 个答案:

答案 0 :(得分:2)

你可以这样做:

no_repeat = Events.where("repeat IS NULL")

no_repeat = Events.where("repeat = ?", nil)

no_repeat = Events.where(:repeat => nil)
no_repeat = Events.where(repeat: nil)