Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用hibernate. 例如,表格如下所示..
hibernate
Person(personId,name, mobile) Mobile(mobileId, mobileNumbers)
如何使用 HQL 加入他们?
我有点理解你的问题,如果你想同时在两个表中添加一些东西,答案如下。
另请参阅从教程的 Hibernate kick 开始学习
请参阅下面的行。我假设 mobile 属性为 person 类中的 Mobile 类。
from Person as person left outer join person.mobile
表:Person(personId,name, mobile) Mobile(mobileId, mobileNumbers)
休眠的 HQL:来自 Person p,Mobile b