Using Left Joins in HQL on 3 Tables

后端 未结 2 1618
鱼传尺愫
鱼传尺愫 2021-02-05 16:17

I have three tables A B and C. Now i want to execute this sql query in HQL:

select * from A as a 
left join 
B as b 
on 
a.id = b.id 
left join 
C as c 
on 
b.t         


        
2条回答
提交回复
热议问题