Many-to-Many query jpql

前端 未结 2 791
天涯浪人
天涯浪人 2021-02-01 03:56

I have the followed trouble.

There is an entity Distributor who is connected with the ManyToMany relationship to entity town:

@Entity
public class Distri         


        
2条回答
  •  耶瑟儿~
    2021-02-01 04:53

    select distinct distributor 
    from Distributor distributor  
    join distributor.towns town 
    join town.district district 
    where district.name = :name
    

    See: https://en.wikibooks.org/wiki/Java_Persistence/JPQL

提交回复
热议问题