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?