Hibernate关联查询中with的经典使用
????" and s.statusDate between p.from and p.to\r\n");
?
备注:如果在不采用with方式,将with中条件添加到where之后相等于,将关联表信息查询交叉之后过滤。
???????? 采用with方式,相等于在查询交叉之前先过滤,减轻数据库负担。