gpt4 book ai didi

sql - Grails:有关HQL查询的帮助

转载 作者:行者123 更新时间:2023-12-02 14:38:38 25 4
gpt4 key购买 nike

我在SQL和HQL方面不是很好...

我有两个域:

class Hotel {
String name
}

class Room {
Hotel hotel
float price
}

有多少家酒店至少有一个房间?

最佳答案

您可能希望使它成为双向关系。

class Hotel {
String name;
List<Room> rooms;
}

class Room {
Hotel hotel
float price
}

然后是HQL:
 from Hotel h where size(h.rooms) >= 1 

将返回房间集合至少具有一个值的酒店。

更多详细信息 here

关于sql - Grails:有关HQL查询的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2507179/

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