我无法从我在Korma中映射的实体SELECT COUNT(*)
。
这是我的实体:
(declare users responses)
(korma/defentity users
(korma/entity-fields :id :slack_id :active :token :token_created)
(korma/many-to-many responses :userresponses))
这是我尝试SELECT COUNT(*)
:
(korma/select
schema/users
(korma/fields ["count(*)"])
(korma/where {:slack_id slack-id}))
我收到此错误:
ERROR: column "users.id" must appear in the GROUP BY clause or be used in an aggregate function at character 8
STATEMENT: SELECT "users"."id", "users"."slack_id", "users"."active", "users"."token", "users"."token_created", count(*) FROM "users" WHERE ("users"."slack_id" = $1)
看起来Korma包含我的实体字段,即使我在此查询中指定要选择的字段。我该如何覆盖它?
答案 0 :(得分:1)
您无法覆盖它本身。 Korma查询操作函数是always additive,因此指定字段仅指定其他字段。
要解决此问题,您可以rewrite this query to select against the users
table itself而不是Korma实体users
:
(korma/select :users
(korma/fields ["count(*)"])
(korma/where {:slack_id slack-id}))
但是,你必须在users
实体中没有任何其他定义的情况下完成。
或者,您可以重写此实体以不定义任何实体字段,然后使用所需的默认字段定义此实体的包装版本:
(korma/defentity users-raw
(korma/many-to-many responses :userresponses)))
(def users
(korma/select
users-raw
(korma/fields [:id :slack_id :active :token :token_created])))```
然后,您可以通过向此“用户”查询添加with
/ where
子句来编写常规查询,并在需要排除这些字段时直接触摸users-raw
:
(-> users (with ...) (where ...) (select))