0

我试过这个,但它没有用,它返回所有帖子

Post.where(' -1 < cached_votes_score < 10')

虽然

Post.where(' cached_votes_score < 10')

有效,对此有什么想法吗?

4

1 回答 1

0

我认为你应该使用AND

Post.where('cached_votes_score > -1').where('cached_votes_score < 10')
于 2016-07-30T15:00:38.337 回答