This is a query to fetch data from two tables
blogs
and
askquestions
HQL query For following SQL query:
select title , date from (select blog_title as title ,created_date as date from blog union select ask_question as title , created_on as date from askquestions ) as aa order by date desc
Thanks in advance for any answers or suggestions!!!