关系是:
我必须开发一个功能,该功能应该找到与指定城市的客户相关的所有订单。 在Oracle sql中,我会编写以下查询
select o.order_number from orders o, customers c, city ci
where ci.city_name='NEW YORK' and ci.id_city=c.id_city and o.customer_id=c.id_customer
如何使用弹簧数据Jpa做到这一点?我能够在我的界面城市存储库中编写一个方法来查找具有city_name ='NEW YORK'的城市实体,但我无法在订单存储库中编写执行上述查询的方法。 感谢