Hibernate中单向一对多按条件查询HQL怎么写
有两个表,Product表和Oem表,他们之间是一对多的关系,一个Product对应多个Oem,一个Oem只能对应一个Product。关系表如下:Product(code...
有两个表,Product表和Oem表,他们之间是一对多的关系,一个Product对应多个Oem,一个Oem只能对应一个Product。
关系表如下:
Product(code,description) ,code 是主键
Oem(oem,model,Product_code) ,oem 是主键,Product_code是外键
我要写单向一对多所以实体类如下:
public class Product {
private String code;
private String description;
private List<Oem> oems = new ArrayList<Oem>();
}
public class Oem {
private String oem;
private Model model;
}
现在我想查询所有oem中包含 "abc" 字符串的的Product。
就是每个Product都有一个oems集合,只要这个集合中的一个的oem值包含”abc“字符串,这个Product就符合要求。
如果用SQL写,应该是
select *
from Product
where code in (
select Product_code
from Oem
where oem like '%abc%'
)
用HQL应该怎么写? 展开
关系表如下:
Product(code,description) ,code 是主键
Oem(oem,model,Product_code) ,oem 是主键,Product_code是外键
我要写单向一对多所以实体类如下:
public class Product {
private String code;
private String description;
private List<Oem> oems = new ArrayList<Oem>();
}
public class Oem {
private String oem;
private Model model;
}
现在我想查询所有oem中包含 "abc" 字符串的的Product。
就是每个Product都有一个oems集合,只要这个集合中的一个的oem值包含”abc“字符串,这个Product就符合要求。
如果用SQL写,应该是
select *
from Product
where code in (
select Product_code
from Oem
where oem like '%abc%'
)
用HQL应该怎么写? 展开
2个回答
展开全部
首先 你的设计有问题啊 先不说单向还是双向 多段都应该是关系维护的 即多段还有外键
所以你多段应该能关联到一端 而不是一端去关联多端
要写HQL 应该去查Oem实体 但是Oem跟本就拿不到其对应到Product的关系
所以 要么改成双向关联 要么让Oem关联到Product
下面2条HQL(要求Oem实体中含有Product的引用 单双向关联都可以)
select o.product from Oem o where o.oem like '%abc%'
select p from Product p where p.code in (select o.product.code from Oem o where o.oem like '%abc%'
已测试 无问题 望采纳
所以你多段应该能关联到一端 而不是一端去关联多端
要写HQL 应该去查Oem实体 但是Oem跟本就拿不到其对应到Product的关系
所以 要么改成双向关联 要么让Oem关联到Product
下面2条HQL(要求Oem实体中含有Product的引用 单双向关联都可以)
select o.product from Oem o where o.oem like '%abc%'
select p from Product p where p.code in (select o.product.code from Oem o where o.oem like '%abc%'
已测试 无问题 望采纳
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询