Rails 3,在heroku上,如何查询一个字段中2个不同值中的任意一个?

发布于 2024-10-24 12:46:36 字数 379 浏览 2 评论 0原文

我试图查找 .user 字段为两个值之一的所有消息。

.user 是一个字符串

   @msgs = Foo.find :all, 
      :order => 'created_at ASC', 
      :conditions => [ "(user = ?) OR (user = ?)", @user1, @user2]

,此查询在heroku(postgres)上始终返回空,

在本地运行,它按预期返回数据。

为什么这不起作用?我绝对肯定 @user1 和 @user2 中的值确实与 .user 字段中的数据匹配,因为当我删除条件然后使用相同的变量名称在 VIEW 中进行过滤时,它工作得很好。

I'm trying to find all messages where the .user field is either of two values.

.user is a string

   @msgs = Foo.find :all, 
      :order => 'created_at ASC', 
      :conditions => [ "(user = ?) OR (user = ?)", @user1, @user2]

this query, on heroku (postgres) always returns empty

running locally, it returns data as expected.

Why does this not work? I'm absolutely positive the values in @user1 and @user2 do match data in the .user field because when I remove the conditions then filter in the VIEW using those same variable names it works fine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苍景流年 2024-10-31 12:46:36

问题是 postgres 显然不喜欢有一个名为“user”的字段,当我更改字段名时它工作得很好。

the problem is postgres apparently does not like having a field named 'user' when I changed the fieldname it worked perfectly.

小红帽 2024-10-31 12:46:36

也许区分大小写是问题所在?我相信 postgres 默认情况下区分大小写。

尝试

 :conditions => [ "UPPER(user) = UPPER(?) OR UPPER(user) = UPPER(?)", @user1, @user2]

Perhaps case sensitivity is the issue? I believe postgres is case-sensitive by default.

Try

 :conditions => [ "UPPER(user) = UPPER(?) OR UPPER(user) = UPPER(?)", @user1, @user2]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文