I\'m new to all this Hibernate/JPA stuff, so i will try to be as clear as possible.
Is there any way in Hibernate to use createNativeQuery to select a single/or mult
For Hibernate 5.0
Query query = getEntityManager().createNativeQuery(sql); List objects = query.getResultList(); System.out.println(objects.get(0)[0]);
https://docs.jboss.org/hibernate/orm/5.0/userguide/html_single/chapters/query/native/Native.html