CriteriaQuery在where子句中的子查询 [英] Subquery in where clause with CriteriaQuery

查看:272
本文介绍了CriteriaQuery在where子句中的子查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以给我一些关于如何将这种子查询放入 CriteriaQuery 的提示吗? (我正在使用 JPA 2.0 - Hibernate 4.x

SELECT a ,b,c FROM tableA WHERE a =(SELECT d FROM tableB WHERE tableB.id = 3) - 第二个选择将总是得到单个结果或为空。


<使用下面的例子来创建一个子查询:

pre $ code > CriteriaQuery中<对象[]> cq = cb.createQuery(Object []。class);
根表A = cq.from(TableA.class);

子查询< String> sq = cq.subquery(TableB.class);
根表B = cq.from(TableB.class);
sq.select(tableB.get(d));
sq.where(cb.equal(tableB.get(id),3));

cq.multiselect(
cb.get(a),
cb.get(b),
cb.get(c) );
cq.where(cb.equal(tableA.get(a),sq));
List< Object []> = em.createQuery(cq).getResultList();

请注意,由于附近缺少IDE,代码未经过测试。


Can anybody give me some hints on how to put that kind of subquery in a CriteriaQuery? (I'm using JPA 2.0 - Hibernate 4.x)

SELECT a, b, c FROM tableA WHERE a = (SELECT d FROM tableB WHERE tableB.id = 3) - the second select will always get a single result or null.

解决方案

Try something like the following example to create a subquery:

CriteriaQuery<Object[]> cq = cb.createQuery(Object[].class);
Root tableA = cq.from(TableA.class);

Subquery<String> sq = cq.subquery(TableB.class);
Root tableB = cq.from(TableB.class);
sq.select(tableB.get("d"));
sq.where(cb.equal(tableB.get("id"), 3));

cq.multiselect(
    cb.get("a"),
    cb.get("b"),
    cb.get("c"));
cq.where(cb.equal(tableA.get("a"), sq));
List<Object[]> = em.createQuery(cq).getResultList();

Note the code has not been tested due to the lack of an IDE nearby.

这篇关于CriteriaQuery在where子句中的子查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆