我无法从我在 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 正在包含我的实体字段,即使我在此查询中指定了要选择的字段。我该如何覆盖它?
您不能覆盖它本身。 Korma 查询操作函数始终是累加的,因此指定字段仅指定其他字段。
要解决此问题,您可以重写此查询以针对users
表本身而不是 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])))```
然后你可以通过向这个"users"查询添加with
/where
子句来编写普通查询,并且只有在需要排除这些字段时才直接触摸users-raw
:
(-> users (with ...) (where ...) (select))