在以下代碼中,我想從Order表和User表中獲取數據如何修改我的查詢以便我可以實現此目的? user_id
是爲了表Spring:如何從JPA中的兩個表中獲取數據
public interface OrderRepository extends JpaRepository<Order, Long> {
@Query("Select o from Order o where o.customer.id= :customerId and o.orderStatus='DELIVERED'")
List<Order> orderHistory(@Param("customerId") long customerId);
}
[相關問題已經在這裏回答,請檢查](http://stackoverflow.com/questions/24638465/selecting-from-multiple-tables-in-spring-data) – Rizwan
我們如何知道這2個CLASSES? JPA(和JPQL)使用CLASSES not TABLES。 –
[從Spring數據中的多個表中選擇]的可能的重複(http://stackoverflow.com/questions/24638465/selecting-from-multiple-tables-in-spring-data) –