why do I get Path expected for join when I use join key word in hql

前端 未结 2 2088
我寻月下人不归
我寻月下人不归 2021-02-10 19:34

I have the following HQL

String FIND_PRODUCT_CLASS_ID = \"SELECT pc.id FROM ProductClass pc\"+ 
\" JOIN ProductGroup pg ON pc.id = pg.productClassId\" +
\" JOIN         


        
2条回答
  •  清酒与你
    2021-02-10 20:28

    We need to provide path in HQL query. That's the "Path expected for join" the exception is coming.

    change query something like below: Please edit as per use

    String FIND_PRODUCT_CLASS_ID = "SELECT pc.id FROM ProductClass pc"+ 
    " JOIN pc.ProductGroup pg " +
    " JOIN pg.Product p " +
    " JOIN p.ProductSub ps WHERE ps.id =:childProductSubId";'
    

    Please refer this.

提交回复
热议问题