Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Object Relational Mapping and the fly likes Use alias in query Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "Use alias in query" Watch "Use alias in query" New topic
Author

Use alias in query

fabian verbeek
Ranch Hand

Joined: Oct 20, 2012
Posts: 52
Hi,

I'm new in hibernate and i would like concat 2 fields and put in an alias
like this i mysql:

SELECT CONCAT(a,b) AS c from table ORDER BY CONCAT(a,b)

How can i use this in the query hibernate

Query q = session.createQuery("FROM table order by ?");

thanks for your help
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Use alias in query
 
Similar Threads
escaping SQL keywords in hibernate
named sql-query dilema
query returning null
HQL query problem
concatination of 3 fields in SQL query