论坛首页 Java企业应用论坛

Hibernate 的HQL中一个经典函数elements的使用

浏览 6955 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2010-01-09   最后修改:2010-01-09

在传递索引和元素给集合时(elements and indices函数)和传递子查询的结果集时,SQL函数any, some, all, exists, in都是被支持的:

可编写如下Hql 语句完成查询:

HQL代码 select Blog    
  1. from Blog, Book   
  2. where Blog.author in elements(Book.authors)   
  3.     and Book.id=?  
 
对应的Sql近似如下:
Sql代码<embed src="http://www.iteye.com/javascripts/syntaxhighlighter/clipboard_new.swf" width="14" height="15" type="application/x-shockwave-flash"></embed>
  1. select  blog.*   
  2. from  blog, book   
  3. where  (blog.author  in  ( select  author.authorid  
  4.         from  book_author   
  5.         where  book.id=book_author.bookid))   
  6.     and  book.id=? 

项目中统计中使用如下:

摘取其中一部分:

 

if (condition.getHasGym() != null && condition.getHasGym()) {
   sb.append(" and " + AmuseFacilities.FITNESSROOM.getCode() + " in elements(h.hotelInfo.hotelFacilityInfo.amuseFacilities)");
  }

 

 

论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics