`
liwy2008
  • 浏览: 28299 次
  • 性别: Icon_minigender_2
  • 来自: 海口
社区版块
存档分类
最新评论

HQL 查询语言3

阅读更多
15.8. 表达式
在where子句中允许使用的表达式包括 大多数你可以在SQL使用的表达式种类: 
数学运算符+, -, *, / 
二进制比较运算符=, >=, <=, <>, !=, like 
逻辑运算符and, or, not 
in, not in, between, is null, is not null, is empty, is not empty, member of and not member of 
"简单的" case, case ... when ... then ... else ... end,和 "搜索" case, case when ... then ... else ... end 
字符串连接符...||... or concat(...,...) 
current_date(), current_time(), current_timestamp() 
second(...), minute(...), hour(...), day(...), month(...), year(...), 
EJB-QL 3.0定义的任何函数或操作:substring(), trim(), lower(), upper(), length(), locate(), abs(), sqrt(), bit_length() 
coalesce() 和 nullif() 
cast(... as ...), 其第二个参数是某Hibernate类型的名字,以及extract(... from ...),只要ANSI cast() 和 extract() 被底层数据库支持 
任何数据库支持的SQL标量函数,比如sign(), trunc(), rtrim(), sin() 
JDBC参数传入 ? 
命名参数:name, :start_date,
SQL 直接常量 ’foo’, 69, ’1970-01-01 10:00:01.0’ 
Java public static final 类型的常量 eg.Color.TABBY 
关键字in与between可按如下方法使用: 
代码内容
from DomesticCat cat where cat.name between ’A’ and ’B’ 
from DomesticCat cat where cat.name in ( ’Foo’, ’Bar’, ’Baz’ ) 


而且否定的格式也可以如下书写: 
代码内容
from DomesticCat cat where cat.name not between ’A’ and ’B’ 
from DomesticCat cat where cat.name not in ( ’Foo’, ’Bar’, ’Baz’ ) 


同样, 子句is null与is not null可以被用来测试空值(null). 
在Hibernate配置文件中声明HQL“查询替代(query substitutions)”之后, 布尔表达式(Booleans)可以在其他表达式中轻松的使用: 
代码内容
<property name="hibernate.query.substitutions">true 1, false 0</property> 


系统将该HQL转换为SQL语句时,该设置表明将用字符 1 和 0 来 取代关键字true 和 false: 
代码内容
from Cat cat where cat.alive = true 

你可以用特殊属性size, 或是特殊函数size()测试一个集合的大小。 
代码内容
from Cat cat where cat.kittens.size > 0 
from Cat cat where size(cat.kittens) > 0 


对于索引了(有序)的集合,你可以使用minindex 与 maxindex函数来引用到最小与最大的索引序数。 同理,你可以使用minelement 与 maxelement函数来 引用到一个基本数据类型的集合中最小与最大的元素。 
代码内容
from Calendar cal where maxelement(cal.holidays) > current date 
from Order order where maxindex(order.items) > 100 
from Order order where minelement(order.items) > 10000 


在传递一个集合的索引集或者是元素集(elements与indices 函数) 或者传递一个子查询的结果的时候,可以使用SQL函数any, some, all, exists, in 
代码内容
select mother from Cat as mother, Cat as kit 
where kit in elements(foo.kittens) 
select p from NameList list, Person p 
where p.name = some elements(list.names) 
from Cat cat where exists elements(cat.kittens) 
from Player p where 3 > all elements(p.scores) 
from Show show where ’fizard’ in indices(show.acts) 


注意,在Hibernate3种,这些结构变量- size, elements, indices, minindex, maxindex, minelement, maxelement - 只能在where子句中使用。 
一个被索引过的(有序的)集合的元素(arrays, lists, maps)可以在其他索引中被引用(只能在where子句中): 
代码内容
from Order order where order.items[0].id = 1234 
select person from Person person, Calendar calendar 
where calendar.holidays[’national day’] = person.birthDay 
    and person.nationality.calendar = calendar 
select item from Item item, Order order 
where order.items[ order.deliveredItemIndices[0] ] = item and order.id = 11 
select item from Item item, Order order 
where order.items[ maxindex(order.items) ] = item and order.id = 11 
在[]中的表达式甚至可以是一个算数表达式。  
select item from Item item, Order order 
where order.items[ size(order.items) - 1 ] = item 


对于一个一对多的关联(one-to-many association)或是值的集合中的元素, HQL也提供内建的index()函数, 
代码内容
select item, index(item) from Order order  
    join order.items item 
where index(item) < 5 


如果底层数据库支持标量的SQL函数,它们也可以被使用 
from DomesticCat cat where upper(cat.name) like ’FRI%’
如果你还不能对所有的这些深信不疑,想想下面的查询。如果使用SQL,语句长度会增长多少,可读性会下降多少: 
代码内容
select cust 
from Product prod, 
    Store store 
    inner join store.customers cust 
where prod.name = ’widget’ 
    and store.location.name in ( ’Melbourne’, ’Sydney’ ) 
    and prod = all elements(cust.currentOrder.lineItems) 
提示: 会像如下的语句  
SELECT cust.name, cust.address, cust.phone, cust.id, cust.current_order 
FROM customers cust, 
    stores store, 
    locations loc, 
    store_customers sc, 
    product prod 
WHERE prod.name = ’widget’ 
    AND store.loc_id = loc.id 
    AND loc.name IN ( ’Melbourne’, ’Sydney’ ) 
    AND sc.store_id = store.id 
    AND sc.cust_id = cust.id 
    AND prod.id = ALL( 
        SELECT item.prod_id 
        FROM line_items item, orders o 
        WHERE item.order_id = o.id 
            AND cust.current_order = o.id 
    )
分享到:
评论

相关推荐

    HQL查询语言基础知识

    HQL 查询语言基础知识 HQL(Hibernate Query Language)是一种面向对象的查询语言,用于在 Hibernate 框架中查询数据库。HQL 查询语言基础知识是 Hibernate 中的基础组件之一,对于开发人员来说,掌握 HQL 查询语言...

    HQL 查询语言基础 一

    HQL 查询语言基础 一

    HQL查询语言基础.

    **HQL查询语言基础** HQL(Hibernate Query Language)是Hibernate框架中用于操作对象关系映射(ORM)的查询语言,它与SQL类似,但专为面向对象编程设计。HQL允许开发者以类和对象的方式编写查询,而不是直接处理...

    HQL 查询语言基础 二

    在HQL查询语言中,`FROM`子句用于指定查询数据来源的实体或表。例如: ```hql FROM Person as p ``` 这里的`Person`表示的是一个持久化类,即ORM映射中的实体类。`as p`则定义了一个别名`p`,方便后续在查询语句中...

    hql查询语言语法

    ### HQL查询语言语法详解 #### 一、引言 HQL(Hibernate Query Language)是一种专为Hibernate设计的面向对象的查询语言,它允许开发者使用类名和属性名来进行数据库查询,而无需直接操作SQL语句。这不仅提高了代码...

    HQL查询语言基础

    **HQL查询语言基础** HQL(Hibernate Query Language)是Hibernate框架中用于操作对象关系映射(ORM)的查询语言,它与SQL类似但更面向对象。HQL提供了丰富的功能来查询和操作数据库中的对象,使得开发人员可以更加...

    Hibernate查询语言HQL.PPT

    3. 使用 HQL 检索对象:使用 Hibernate 查询语言 HQL 检索对象。 4. 使用 Hibernate 条件 API:提供了类型安全的面向对象的方式执行查询。 5. 使用本地 SQL 查询:Hibernate 只关心把 JDBC 结果集映射到持久对象图。...

    HQL查询语言基础!

    **HQL查询语言基础** HQL(Hibernate Query Language)是Hibernate框架中用于操作对象关系映射(ORM)的查询语言,它与SQL类似,但更专注于面向对象的查询。HQL允许开发者以类和对象的方式来编写查询,而不是直接...

    HQL查询pdf资料

    HQL(Hibernate Query Language)是一种面向对象的查询语言,它提供了与SQL类似的功能,但更贴近于面向对象编程的思维方式。HQL允许开发人员以一种更自然的方式查询数据库,同时保持了Java对象模型的一致性。 #### ...

    HQL查询及语法

    HQL,全称为Hibernate Query Language,是Hibernate框架提供的一种面向对象的查询语言。它基于SQL标准,但更加强调对象模型,支持Java中的对象关系映射(ORM),能够处理继承、多态等特性,使开发者能够在保持面向...

    HQL Hibernate查询语言

    HQL Hibernate查询语言,HQL的学习和参考的文档,开发必备。

    HQL查询语言基础知识 + 插入,查询,更新, 代码集

    Hibernate Query Language(HQL)是Hibernate框架中用于操作对象关系映射(ORM)的数据的语言,它类似于SQL,但设计用于处理Java对象。本教程将深入探讨HQL的基础知识,包括插入、查询和更新操作,并提供相关代码...

    Hibernate查询语言HQL

    Hibernate查询语言HQL

    HQL语言大全 高清晰可复制版

    例如,一个简单的HQL查询可能如下所示: ```sql FROM Employee e WHERE e.name = 'John' ``` 这条语句将返回所有名字为'John'的员工对象。 3. **HQL的查询类型** - **基本查询**:如上所示,从一个实体类中...

    hibernateHQL关联查询

    其中,HQL(Hibernate Query Language)作为Hibernate提供的查询语言之一,允许开发者以接近面向对象的方式编写查询语句。本文将重点介绍Hibernate中的关联查询,并深入探讨HQL关联查询的实现原理及应用场景。 ####...

    精通hibernate HQL语言

    HQL,全称Hibernate Query Language,是Hibernate框架提供的一种面向对象的查询语言,它的语法结构与SQL相似,但主要针对对象和实体进行操作,而不是直接操作数据库表。HQL是Hibernate官方推荐的检索数据的主要方式...

Global site tag (gtag.js) - Google Analytics