我如何将oracle查询转换为条件查询?

问题描述 投票:0回答:1
select l.city,
       l.street_address,
       c.country_name,
       r.region_name 
from HR.locations l join HR.countries c using (country_id)
                    join HR.regions r   using (region_id)
java oracle hibernate hibernate-criteria hibernate-annotations
1个回答
0
投票

最后,我通过使用简单的逻辑得到了答案。

© www.soinside.com 2019 - 2024. All rights reserved.