也許,這個問題有點愚蠢,但我很困惑。按PostgreSQL中的指定列分組
如何按指定列對記錄進行分組? :)
Item.group(:category_id)
簡化版,作品...
它說:
ActiveRecord::StatementInvalid: PGError: ERROR: column "items.id" must appear in the GROUP BY clause or be used in an aggregate function LINE 1: SELECT "items".* FROM "items" GROUP BY category_id
我應該使用什麼樣的聚合函數的?
請問您能否提供一個簡單的例子。