HQL order by.

HQL order by.

HQL Order by query giving problem.

View Answers

May 31, 2012 at 6:53 PM

Order by clause is one way to group a series of object in sorted form. There is two pattern of sorting either in ascending(asc) or descending(desc).If you don?t mention, order by automatically sorted the list in ascending order. Here is an example of order by clause. Since we didn?t mention ?asce? or ?desc? it will return employee name into ascending order.

If you want to print employee name into descending order you can follow the following HQL ?

String hql="Select emp FROM Employee emp ORDER BY name desc";

Example :

package net.roseindia.main;
import java.util.Iterator;
import net.roseindia.table.Employee;
import net.roseindia.util.HibernateUtil;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;

public class HQLOrderBy{
    public static void main(String []args){
        SessionFactory sessionFactory =HibernateUtil.getSessionFactory();
        Session session=sessionFactory.openSession();
        String hql="Select emp FROM Employee emp ORDER BY name";
        Query query=session.createQuery(hql);
        Iterator it=query.iterate();
        while(it.hasNext()){
            Employee employee=(Employee)it.next();
            System.out.println(employee.getName());
        }

        session.close();
    }
}

Output :

Hibernate: select employee0_.emp_id as col_0_0_ from employee employee0_ order by employee0_.name
Mandy
Ron
Roxi
Som









Related Tutorials/Questions & Answers:
HQL order by.
HQL order by.  HQL Order by query giving problem.   Order... into descending order you can follow the following HQL ? String hql="Select emp FROM...(); String hql="Select emp FROM Employee emp ORDER BY name"; Query query
HQL
HQL  What is the HQL in hibernate ? Explain the use of HQL.   Hi Friend, Please visit on this link....... Hibernate Query Language
Advertisements
HQL Order By Example
HQL Order By Example       Order by clause is used to retrieve the data from database in the sorted order by any property of returned class or components. HQL supports Order
Hibernate ORDER BY Clause
Hibernate ORDER BY Clause In this tutorial you will learn about HQL ORDER... how a HQL order by clause can be used. To achieve the solution... create a simple java file into which we will use HQL order by clause
order
order   write a java code to enter order of number of chocolates(bar,powder,giftbox) in arraylist. Also consider exceptional cases like entering integer in name use try,catch ,throw to deal with exception
HQL group By.
HQL group By.  How to use group by in HQL?   In general... order. It allows the Hibernate to fetch information from the database and group...=sessionFactory.openSession(); String hql="Select emp.name FROM Employee emp GROUP BY name
convert into hql
convert into hql   String sqlListSurveys= "select distinct s.surveyAutoID, s.surveyTitle, date(s.modifiedOn) modifiedOn, s.createdOn... != '"+SGSConstants.DELETE_STATE+"' order by createdOn DESC
HQL query
HQL query  how to select only password based on username using HQL query from login table where uname and paswrd are two column names
HQL Query
HQL Query  Hibernate query language: How to use a left join in Hibernate query language. Can somebody help with an example. I am getting a unexpected token error in HQL Query tool If I use joins
HQL in hibernate ? Explain the use of HQL.
HQL in hibernate ? Explain the use of HQL.  What is the HQL in hibernate ? Explain the use of HQL.   HQL stands for Hibernate Query...(); Session session = sessionFactory.openSession(); String hql="SELECT
HQL Sample
HQL Sample In this site there are many tutorials and example of HQL. These examples comes with HQL sample code that you can download and run on your computer and learn the HQL by modifying and executing these examples. The HQL Sample
Hibernate-HQL subquery - Hibernate
Hibernate-HQL subquery  Hi, I need to fetch latest 5 records from... where customer_id=xxxx order by shipdate desc... in HQL which should return list of "Status" type beans.Is it possible?If yes
how to convert sql into hql
how to convert sql into hql   StringBuffer questionDataSql = new..._CONCAT(distinct ifnull(qo.optionVerbiage,'') order by qo.questionOptionAutoID...,'') branchingLogic ") .append("FROM question q left join
Hibernate Query Language (HQL)
Hibernate Query Language (HQL)  What is Hibernate Query Language (HQL)?   HQL is much like SQL and are case-insensitive, except... and execute it against underlying database if HQL is used in the application. HQL
Hibernate HQL Update
In this section we will discuss HQL update with example
Using Min, Max and Count on HQL.
Using Min, Max and Count on HQL.  How to use Min, Max and Count on HQL
What is Hibernate Query Language (HQL)?
What is Hibernate Query Language (HQL)?  Hi, What is Hibernate Query Language (HQL)? thanks
Hibernate delete HQL - Hibernate
Hibernate delete HQL  Hi I am trying hibernate tutorial. But delete HQL tutorial not working properly. It gives null pointer exception. Query class has method executeUpate() & not executeUpdate
how I do select from select in hql
'a%' order by globalid ) ) where db_id = 259; this is the sql The below hql... from com.eci.sid.profile.Profile p where p.profileKey.profileType = ? order... link: HQL Select Example
Delete HQL query - Hibernate
Delete HQL query  Hi I am trying hibernate tutorial. But delete HQL tutorial not working properly. It gives null pointer exception. Query class has method executeUpate() & not executeUpdate(); log4j:WARN No appenders
HQL update problem
HQL update problem  public void saveGuest(List<Long> listid) throws HibernateException{ SessionFactory sf... table HQL plz help
Count distinct value in HQL.
Count distinct value in HQL.  How do you count distinct value in HQL?   count(distinct fieldName) returns number of distinct value of the table under specified field name. Example : package net.roseindia.main
HQL Between clause, HQL Between example
HQL Between clause example In this tutorial you will learn how to use HQL... and 6. The HQL Between used for this purpose is: // Create HQL Between clause String HQL_QUERY = "select c from Customer c where c.id between 2 and 6"
Delete Query using HQL
Delete Query using HQL  Can we write 'AND' with 'WHERE' clause in delete query using HQL? For example: delete from table name where field1 = value1 and field2 = value2   The example query i have written
HQL, Hibernate Query Language
HQL - Hibernate Query Language In this tutorial on HQL we will learn how to use HQL to perform CRUD operations on the persistence Entity objects. This is complete tutorial on HQL. You will find almost all the topics related to HQL
HQL Statement: Please help me
HQL Statement: Please help me  Select ProductFamily.* from ProductFamily, ProductGroup, Product where ProductFamily.productFamilyVersionId... = Product.productGroupVersionId and Product.lobId = ? Can you please help me equallent HQL
HQL Query in execute method of Struts2
HQL Query in execute method of Struts2  I am making login page in struts2 and using hibernate . Now I wants to pull user name and password from... data from database using hql. And where I need to write the hql query
SQL ORDER BY
SQL ORDER BY       The ORDER BY keyword sort the table result set by a specified column. You want to sort the records in ascending order,  you can use the ASC keyword
Hibernate: ORDER BY using Criteria API.
Hibernate: ORDER BY using Criteria API.  How to display record in order using Criteria API?   Hibernate Criteria API provides an easy way... API is an alternative of HQL (Hibernate Query Language) queries. It is more
Ascending order
of them equal to each other, in any order, (for example, 23, 7, 156; but not 23, 7, 23), and then it should print out the three integers in ascending order, saying
sum and avg function using HQL.
sum and avg function using HQL.  How to use sum and avg function in HQL?   HQL supports many aggregate functions. Sum and avg are some of them. sum() function returns summation of specified field in the table
Hibernate Named HQL in Annotation
In this section, you will learn how to execute Named HQL written in Model class Annotation
Hibernate Named HQL using XML Mapping
In this section, you will learn executing Named HQL written in XML Mapping file
Hibernate HQL query by using like operator.
Hibernate HQL query by using like operator.  How use like operator in HQL?   HQL stands for Hibernate Query Language, provided by Hibernate... = sessionFactory.openSession(); String hql="SELECT emp.name, emp.salary, emp.dateOfJoin
Order Entry System
Order Entry System  Create a new order entry system using netbeans and microsoft access.can anyone help me
Order by example in MySQL
Order by example in MySQL  Hi, How to use the order by in MySQL? Thanks   Hi, The order by clause in used in MySQL for ordering the result in ascending or descending order. For example following query order the data
ModuleNotFoundError: No module named 'order'
ModuleNotFoundError: No module named 'order'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'order' How to remove the ModuleNotFoundError: No module named 'order'
SQL Select, HQL Select Example, HQL Select Query
HQL Select In this tutorial we will learn how to use HQL Select statement to load the Entity objects. The HQL Select query is used to load Entity based...). Writing HQL Select query: Here is the simple HQL Select example that loads
HQL from clause Example
HQL from clause Example       In this example you will learn how to use the HQL from clause. The from clause is the simplest possible Hibernate Query. Example of from
MySQL Order By
MySQL Order By       Here, you will learn how to use MySQL Order By clause. The Order By clause is used for sorting the data either ascending or descending order according to user
Maven's order of inheritance
Maven's order of inheritance  hello, What is Maven's order of inheritance?   hii,ADS_TO_REPLACE_1 1.parent pom 2.project pom 3.settingsADS_TO_REPLACE_2 4.CLI parameters
HQL Date Between Example
HQL Date Between Example In this tutorial I will show you how you can use the HQL Date Between clause in Hibernate program. With the help of HQL between... we are finding the Invoice for some date rage. With the help of following HQL
pie chart flex and sum from hql request
pie chart flex and sum from hql request  hi, i work with flex and j2ee project.i have to make a function wich return list of value: print("public List Statistiqueordinateur() { return template.template.find("select
Maven Repository/Dependency: org.hibernate.hql | hibernate-hql-parser
Maven Repository/Dependency of Group ID org.hibernate.hql and Artifact ID hibernate-hql-parser. Latest version of org.hibernate.hql:hibernate-hql-parser dependencies. # Version Release Date
HQL Group By Clause Example
HQL Group By Clause Example       Group by clause is used to return the aggregate values by grouping on returned component. HQL supports Group By Clause. In our example we
SQL Union with order by
SQL Union with order by  I want to combine three queries using union. 1.SELECT * from user_projects where status='O' order by id desc It returns...' and newproject='yes' order by id descADS_TO_REPLACE_2 It returns the following ids
PHP SQL ORDER BY
PHP SQL ORDER BY       This example illustrates how to execute query with ORDER BY clause in the php application. ORDER BY clause is used to sort the result data either
ascending order of a data hierarchy
ascending order of a data hierarchy  The ascending order of a data hierarchy is 1. Bit-byte-record-field-file-database 2. Byte-bit-field-record-file-database 3. Byte-bit-record-file-field-database 4. Bit-byte-field-record-file
Case-insensitive search using Hibernate Query Language(HQL).
Case-insensitive search using Hibernate Query Language(HQL).  What is Case-insensitive search using Hibernate Query Language
org.hibernate.hql - hibernate-hql-parser version 1.0.0.Alpha2 Maven dependency. How to use hibernate-hql-parser version 1.0.0.Alpha2 in pom.xml?
org.hibernate.hql  - Version 1.0.0.Alpha2 of hibernate-hql-parser Maven... of hibernate-hql-parser in pom.xml? How to use hibernate-hql-parser version... it easy to use org.hibernate.hql  - Version 1.0.0.Alpha2 of hibernate-hql

Ads