我有一个包含rooms
和suites
列的Property模型。
如果我想查找具有rooms > 5
的所有属性,我可以轻松地写出:
Property.where("rooms > 5")
但我想编写一个查询,找到任何包含+5 rooms and suites
的属性,因此它可以是6 rooms and 0 suites
,0 rooms and 6 suites
,3 rooms and 3 suites
或任意组合。重要的是rooms + suites > 5
。
我该怎么写这样的查询?
答案 0 :(得分:1)
你试过吗?
Property.where("(rooms + suites) > 5")