How to pass parameter in HQL query
问题 find below my HQL query Query query = session.createQuery("select u from UserLog u where u.userLogSerialno = " + "(select max(uu.userLogSerialno) from UserLog uu where uu.userId = u.userId)"); This query is working fine but in this, I want to pass the value of userId but I am not able to figure out how to do this. Kindly Help..!! Thanks in Advance..!! 回答1: I is very simple to add parameter to an HQL Query query = session.createQuery("select u from UserLog u where u.userLogSerialno = " + "