2

我编写了查询来计算指定企业下可用的位置数。SQL 查询是这样的

SELECT 
e.enterprise_id,
e.ent_name,
(
    SELECT count(l.location_id)
    FROM rfx_ent_locations l
    WHERE l.loc_type_id <> 1001
        AND e.enterprise_id = l.enterprise_id
) AS locCount
FROM rfx_enterprises e
WHERE  e.partner_type = 102;

如果在 entity 中作为列引入,我会收到一条错误消息,提示找不到列。要检索作为包括用作别名的 locCount 的实体,使用 JPA 我应该如何进行?

4

1 回答 1

0

不要用那个做你的计数查询。像这样单独做

Query query = session.createQuery("SELECT count(l.location_id)
    FROM rfx_ent_locations l
    WHERE l.loc_type_id <> 1001
        AND e.enterprise_id = l.enterprise_id");// do as you please with the query result

    /**
     * instead of doing a second query to get the count.  Just do a quick count using Iterator
     */

    for (Iterator iterator = query.iterate(); iterator.hasNext();) {
        iterator.next();
        count++;
    }

    Integer queryCount = count;

将此 queryCount 设置为您的类中的@transient变量设置方法。这样您就可以进行计数


尝试这样

Integer count = (Integer) session.CreateQuery("SELECT count(l.location_id)
FROM rfx_ent_locations l
WHERE l.loc_type_id <> 1001
    AND e.enterprise_id = l.enterprise_id").UniqueResult();

干杯!!!

于 2012-09-17T07:53:39.383 回答