Basically i am trying to write the following query in Hibernate. Please help me to do the same.
SELECT collaboratoruser,GROUP_CONCAT(collaboratorrole SEPARATOR ',') FROM tbl_conceptcollections_collaborator WHERE collectionid = incollectionid GROUP BY collaboratoruser;
I cannot use SQL Query and i want to use only HQL. Any help appreciated.