gpt4 book ai didi

java - JPQL 和 ON 子句基本子查询

转载 作者:行者123 更新时间:2023-11-29 06:06:53 24 4
gpt4 key购买 nike

在 MySQL 中,这有效,我想实现与 hibernate 等效的效果:

Select * from A a left join B b on a.id=b.id AND b.lenght=20

OneToMany() : Class A包含 List <B> b

对于 hibernate ,我陷入了困境:

//the ON clause comes from the mapping's join columns and is handled automatically 
@Query(Select a from A a left join a.b c)

但我不知道如何添加这部分AND b.lenght=20

用 JPA 将它翻译成 JPQL 很热门?

最佳答案

您可以使用 WITH 关键字在连接子句中添加您的条件

Select a from A a left join a.b with b.lenght = 20

...假设 lenght 是 B 中的一个字段,而不是长度函数。

[ https://docs.jboss.org/hibernate/orm/3.3/reference/en-US/html/queryhql.html]

关于java - JPQL 和 ON 子句基本子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40948688/

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