gpt4 book ai didi

hibernate - 通过 with select 对 hibernate 查询进行排序

转载 作者:行者123 更新时间:2023-12-03 06:57:00 24 4
gpt4 key购买 nike

是否可以编写 hql 查询来通过某些子查询进行排序?有这样的查询:

select a from A.a join a.b where a.b.id = :id

我需要的是这样的:

select a from A.a join a.b where a.b.id = :id order by (select count(c) from C c where c.a = a.id) desc

最佳答案

我的别名系统似乎不起作用。或者这可能是 hibernate 的一个错误,但是这个东西可以工作(虽然效率很低),我必须对别名进行硬编码

SELECT a, (SELECT COUNT(c) FROM C c WHERE c.a = a.id) AS col_1_0_ 
FROM A.a
JOIN a.b
WHERE a.b.id = :id
ORDER BY col_1_0_

我正在使用 Hibernate 3 和 MySQL

关于hibernate - 通过 with select 对 hibernate 查询进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11668895/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com