這篇隨筆將會記錄hql的常用的查詢語句,為日後檢視提供便利。
在這裡通過定義了三個類,Special、Classroom、Student來做測試,Special與Classroom是一對多,Classroom與Student是一對多的關係,這裡僅僅貼出這三個bean的屬性程式碼:
Special類:
public class Special { private int id; private String name; private String type; private Set<Classroom> rooms; .......... }
Classroom類:
public class Classroom { private int id; private String name; private Special special; private Set<Student> students; ............ }
Student類:
public class Student { private int id; private String name; private String sex; private Classroom room; .......... }
1.最簡單的查詢
List<Special> specials = (List<Special>)session.createQuery("select spe from Special spe").list();
這是hql最基本的查詢語句了,作用就是查出所有的Special物件放到一個List當中
2.基於 ? 的引數化形式
/** * 查詢中使用?,通過setParameter的方式可以防止sql注入 * jdbc的setParameter的下標從1開始,hql的下標從0開始 */ List<Student> students = (List<Student>)session.createQuery("select stu from Student stu where name like ?") .setParameter(0, "%劉%") .list();
在hql中同樣支援基於 ? 的引數化形式查詢,注意:在jdbc中,setParameter的下標是從1開始的,而hibernate的setParameter的下標是從0開始的。
3.基於 :xx 的別名的方式設定引數
/** * 在hql中可以使用別名的方式來查詢,格式是 :xxx 通過setParameter來設定別名 */ List<Student> students = (List<Student>)session.createQuery("select stu from Student stu where name like :name and sex like :sex") .setParameter("name", "%王%").setParameter("sex", "%男%") .list();
4.如果返回的值只有一個,可以使用uniqueResult方法
/** * 如果得到的值只有一個,則可以使用uniqueResult方法 */ Long stu = (Long)session.createQuery("select count(*) from Student stu where name like :name and sex like :sex") .setParameter("name", "%王%").setParameter("sex", "%男%") .uniqueResult(); /** * 如果得到的值只有一個,則可以使用uniqueResult方法 */ Student stu = (Student)session.createQuery("select stu from Student stu where id = ?") .setParameter(0, 1) .uniqueResult();
5.基於投影的查詢
/** * 基於投影的查詢,如果返回多個值,這些值都是儲存在一個object[]陣列當中 */ List<Object[]> stus = (List<Object[]>)session.createQuery("select stu.name, stu.sex from Student stu where name like
:name and sex like :sex") .setParameter("name", "%張%").setParameter("sex", "%男%") .list();
6.基於導航物件的查詢
/** * 如果物件中有導航物件,可以直接通過物件導航查詢 */ List<Student> stus = (List<Student>)session.createQuery("select stu from Student stu where stu.room.name like :room and sex like :sex") .setParameter("room", "%計算機應用%").setParameter("sex", "%女%") .list();
注意:若直接通過導航物件來查詢時,其實際是使用cross join(笛卡兒積)來進行連線查詢,這樣做效能很差,不建議使用
7.使用 in 進行列表查詢
/** * 可以使用in設定基於列表的查詢,使用in查詢時需要使用別名來進行引數設定, * 通過setParameterList方法即可設定,在使用別名和?的hql語句查詢時,?形式的查詢必須放在別名前面 */ // List<Student> stus = (List<Student>)session.createQuery("select stu from Student stu where sex like ? and stu.room.id in (:room)") // .setParameter(0, "%女%").setParameterList("room", new Integer[]{1, 2}) // .list(); List<Student> stus = (List<Student>)session.createQuery("select stu from Student stu where stu.room.id in (:room) and stu.sex like :sex") .setParameterList("room", new Integer[]{1, 2}).setParameter("sex", "%女%") .list();
在使用 in 進行列表查詢時,這個時候要通過 setParameterList() 方法來設定我們的引數,注意:如果一個引數通過別名來傳入,一個是通過 ? 的方式來傳入的話,那麼通過別名的hql語句以及引數設定語句要放在 ? 的後面,不然hibernate會報錯。如果都是使用 別名 來設定引數,則無先後順序
8.分頁查詢
/** * 通過setFirstResult(0).setMaxResults(10)可以設定分頁查詢,相當於offset和pagesize */ List<Student> stus = (List<Student>)session.createQuery("select stu from Student stu where stu.room.name like :room and sex like :sex") .setParameter("room", "%計算機應用%").setParameter("sex", "%女%").setFirstResult(0).setMaxResults(10) .list();
9.內連線查詢
/** * 使用物件的導航查詢可以完成連線查詢,但是使用的是Cross Join(笛卡兒積),效率不高,所以建議使用join來查詢 */ List<Student> stus = (List<Student>)session.createQuery("select stu from Student stu join stu.room room where room.id=2") .list();
在hql中使用連線查詢的語句與我們的sql進行連線查詢的語句是有區別的:
hql: select stu from Student stu join stu.room room
sql: select t.* from Student t join Classroom c on t.cid=c.id
10.左外連和右外連查詢
/** * 左外連和右外連其實是相對的,left join 就是以左邊的表為基準, right join 就是以右邊的表為基準 */ List<Object[]> stus = (List<Object[]>)session.createQuery("select room.name, count(stu.room.id) from Student stu right join stu.room room group by room.id") .list();
11.建立DTO類,將查詢出來的多個欄位可以存放到DTO物件中去
/** * 當如果我們查詢出多個欄位的話,通常會建立一個DTO物件,用來儲存我們查詢出來的資料,通過 new XXX() 這樣的方式 * 前提是XXX這個類裡面必須要有接受這些欄位的構造方法才行,而且必須要使用類的全名 */ // List<Object[]> stus = (List<Object[]>)session.createQuery("select stu.id,stu.name,stu.sex,room.name,special.name from Student stu left join stu.room room left join room.special special") // .list(); // for(Object[] obj : stus) // { // System.out.println(obj[0] + ", " + obj[1] + ", " + obj[2] + ", " + obj[3] + ", " + obj[4]); // }
List<StudentDTO> stus = (List<StudentDTO>)session.createQuery("select new com.xiaoluo.bean.StudentDTO(stu.id, stu.name, stu.sex, room.name, special.name) from Student stu left join stu.room room left join room.special special")
.list();
12.group having字句
/** * 在hql中不能通過給查詢出來的欄位設定別名,別名只能設定在from 後面 */ List<Object[]> stus = (List<Object[]>)session.createQuery("select special.name, count(stu.room.special.id) from Student stu right join stu.room.special special group by special.id having count(stu.room.special.id)>150") .list(); // 查詢出人數大於150個人的專業
// 查詢出每個專業中男生與女生的個數
List<Object[]> stus = (List<Object[]>)session.createQuery("select special.name, stu.sex, count(stu.room.special.id) from Student stu right join stu.room.special special group by special.id,stu.sex") .list();
基本上用到的hql查詢語句就是這些,以後若再遇到會進行補充。