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
In case of Native query or jpql with column name EntityManager Returns a List of array of objects.
so to get Result List.
receive it in a
List listResults = query.getResultList();
then iterate over it:-
for (Object[] record : listResults) { //Iterate Logic will come here }