在OQL或JQL中,如何执行这种类型的outerjoin



假设我们有两个完全不相关的实体EntityX和EntityY,它们都具有列年龄。我如何在OQL中加入这样的

从EntityX中选择x,y作为x完全外部联接EntityY作为x.age=y.age 上的y

这不可能吗?

谢谢,Dean

full outer join几乎不应该被使用。您应该使用JP-QL/OQL支持的left outer join:http://docs.jboss.org/hibernate/entitymanager/3.5/reference/en/html/queryhql.html#queryhql-加入

相关内容

  • 没有找到相关文章

最新更新