作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,我有这样的映射文件
<class name="my.test.model.Product" table="PRODUCT">
...
<set name="retailers" table="product_shop" lazy="false">
<key column="PRODUCT_ID" />
<many-to-many column="SHOP_ID" class="my.test.model.Shop" />
</set>
...
</class>
String searchHql = "select p from Product p inner join p.retailers retailing where p.retailers.shop_id = :shopId";
@SuppressWarnings("unchecked")
List<Product> productList = sessionFactory.getCurrentSession().createQuery(searchHql ).setInteger("shopId", shopId).list();
最佳答案
您应该在 wgere 子句中使用分配给连接实体的别名:
select p from Product p inner join p.retailers retailing
where retailing.shop_id = :shopId
shopId
而不是
shop_id
.
关于java - 使用 WHERE 子句中的多对多集(连接表)进行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9477798/
我是一名优秀的程序员,十分优秀!