从SQL查询转化为HQL查询问题

发布于 2024-11-09 11:12:11 字数 359 浏览 0 评论 0原文

我是 hibernate 用户才几天,我遇到了一个问题。

我不知道如何将此 SQL 查询转换为 HQL:

SELECT name, street, city, description
    , (SELECT AVG(rate) 
      FROM user_restaurant_rating 
      WHERE user_restaurant_rating.restaurant_id = restaurants.id) AS rate 
FROM restaurants 
ORDER BY rate DESC 
LIMIT 0,3

我读过一些教程,但还没有找到如何转换它。

先感谢您。

I'm a hibernate user for only a few days and I came across a certain problem.

I can't work-out how to translate this SQL query into HQL:

SELECT name, street, city, description
    , (SELECT AVG(rate) 
      FROM user_restaurant_rating 
      WHERE user_restaurant_rating.restaurant_id = restaurants.id) AS rate 
FROM restaurants 
ORDER BY rate DESC 
LIMIT 0,3

I've read few tutorials, but haven't found how to translate it.

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぶ宁プ宁ぶ 2024-11-16 11:12:11

Hibernate 参考 指示子选择在 select 子句中受支持。因此你应该能够写

select r.name, r.street, r.city, r.description, (select avg(ur.rate) from UserRestaurantRating ur where ur.restaurant.id = r.id) rate from Restaurant r order by rate desc

The Hibernate reference indicates that subselects in the select clause are supported. You should thus be able to write

select r.name, r.street, r.city, r.description, (select avg(ur.rate) from UserRestaurantRating ur where ur.restaurant.id = r.id) rate from Restaurant r order by rate desc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文