我正在开发一个 ROR 应用程序,我将 Hstore 与 PostgreSQL 数据库一起使用,我问我是否可以按表上的 Hstore 键进行分组?
我这样做了:
select state , count(*) from infractions group by details -> 'commune';`
但我收到此错误:
column "infractions.state" must appear in the GROUP BY clause or be used in an aggregate function
详细信息是 Hstore 列,她是我的详细信息的示例:
"adress"=>"", "commune"=>"14", "province"=>"6", "description"=>"Ce fichier est sous licence Creative Commons"
谢谢