Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a MySQL database includes a table named 'Task'. and I used Hibernate to map the data to the database.

it includes these fields : id, user_id, project_id, ...

When I retrieve the list of project from Db, I need to implement two different sorting mechanisms :

1 - Find the three last used projects.

2 - Sort all other projects alphabetically.

 Session session = HibernateUtil.getSessionFactory().getCurrentSession();
 session.beginTransaction();
 List<Project> projects = session.createQuery("select project from ProjectTbl as p 
   where p.user.username = :name").setString("name", username).list();
 long task_id;
 for(Project p : projects) {
    task_id = (long) session.createQuery("Select Max(id) from Task as t where 
      t.user.username =:name And t.project.id = :id").setString("name", username)
      .setLong("id", p.getId()).uniqueResult();
    p.setTask_id(task_id);
 }
 sortProject(projects);


 private void sortProject(List<Project> projects) {
    Collections.sort(projects);    // sort by task_id (last used)
    if(projects.size()>4) {   // sort alphabetically
       Collections.sort(projects.subList(3, projects.size()), new Comparator<Project>(){     
        public int compare(Project p1, Project p2) {
            return p1.getKey().compareToIgnoreCase(p2.getKey());
        }
        });
    }
}

Do you know any way that I can write both of queries in one for instance with order by?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.