数据库 – Rails 3,ActiveRecord,PostgreSQL – “.uniq”命令不起作用?

前端之家收集整理的这篇文章主要介绍了数据库 – Rails 3,ActiveRecord,PostgreSQL – “.uniq”命令不起作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下查询
Article.joins(:themes => [:users]).where(["articles.user_id != ?",current_user.id]).order("Random()").limit(15).uniq

并给我错误

PG::Error: ERROR:  for SELECT DISTINCT,ORDER BY expressions must appear in select list
LINE 1: ...s"."user_id" WHERE (articles.user_id != 1) ORDER BY Random() L...

当我更新原来的查询

Article.joins(:themes => [:users]).where(["articles.user_id != ?",current_user.id]).order("Random()").limit(15)#.uniq

所以错误消失了…在MysqL .uniq中,在Postgresql中没有.存在任何替代品?

解决方法

由于SELECT DISTINCT的错误状态,ORDER BY表达式必须出现在选择列表中.
因此,您必须明确选择您订购的子句.

这是一个例子,它类似于你的情况,但是泛化一点.

Article.select('articles.*,RANDOM()')
       .joins(:users)
       .where(:column => 'whatever')
       .order('Random()')
       .uniq
       .limit(15)

所以,使用.select()明确地包含你的ORDER BY子句(在这种情况下是RANDOM()).如上所示,为了让您的查询返回文章属性,您还必须明确选择它们.

我希望这有帮助;祝你好运

原文链接:https://www.f2er.com/mssql/82440.html

猜你在找的MsSQL相关文章