posted 13 years ago
I have two tables namely deliverydetails and supplybilldetails with following SQL create statements
Their respective classes are
getters and setters are omitted……..
getters and setters are omitted……..
Tables are connected with supplybilldetail.id deliverydetails.billdetailid
Problem is that I need to find the HQL query for the group sum of deliverydetails.qty on deliverydetails.billdetailid but I simply can’t. Following query works
I want to add something like
“ where s.qty > sum(d.qty) group by s.id “ can somebody help me out???