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.
我想使用内部连接关联来连接一个表,但我不知道如何用 HQL 语法编写它。
我想用 HQL 语法写这个“select * from persona p inner join trabajador t on t.id_persona=p.id”。我想把这句话放在命名查询中。
我非常感谢任何帮助!
select p from Persona p inner join p.trabajador t
这是文档中涵盖的基本内容。阅读。