1

我如何过滤 NULL 字段

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

NULL 字不起作用

4

1 回答 1

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)
于 2013-04-04T16:36:33.120 回答