gpt4 book ai didi

sql - Ruby on Rails Where 子句小于大于

转载 作者:数据小太阳 更新时间:2023-10-29 06:51:27 27 4
gpt4 key购买 nike

所以我想做一个 ruby​​ on rails 查询,它以这种方式构造,具有小于和大于约束。

self.order('random()')
.where(
friends: friend,
age: {minimum: 5, maximum: 20}
)

作为 ruby​​ 初学者,以上是我想象的完成方式。但是,这不起作用。如何正确实现这一目标?

最佳答案

使用范围对象。

.where(age: 5..50)

或者你可以这样写

.where('age BETWEEN 5 AND 20')

关于sql - Ruby on Rails Where 子句小于大于,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21275739/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com