This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Could anybody answer me how to make this code run.
String sql = "select MONTH(CC.createddateTs) as months , "+
"(SELECT COUNT(CC1.communicationtypeTx) from Customercommunication as CC1 "+ " where CC1.communicationtypeTx = 'Complaint' and MONTH(CC1.createddateTs)= MONTH(CC.createddateTs) "+ " group by MONTH(CC1.createddateTs) ) as complaint," +
"(SELECT COUNT(CC2.communicationtypeTx) from Customercommunication as CC2 "+ " where CC2.communicationtypeTx = 'Enquiry' and MONTH(CC2.createddateTs)= MONTH(CC.createddateTs) "+ " group by MONTH(CC2.createddateTs) ) as Enquiry "+
"from Customercommunication as CC where YEAR((CC.createddateTs) = 2008 group by MONTH(CC.createddateTs) "+ "order by MONTH(CC.createddateTs) ASC";
Query query = mSession.createQuery(sql);
when i run this code i get this error: ERROR [org.hibernate.hql.PARSER] - <line 1:698: unexpected token: group>
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35237
7
posted
0
Welcome to JavaRanch.
I'd say that either there's a comma missing after "as Enquiry", and/or a SELECT clause before "from Customercommunication".
Since this has nothing to do with the SCEA certification -which this forum is about- I'll move it to ORM forum where Hibernate is discussed.