如何在HQL中加入两个表,它们在数据库中没有关系

时间:2016-08-12 10:44:55

标签: hibernate hql hibernate-criteria nhibernate-hql

请您告诉我是否可以加入HQL hibernate,它在数据库中没有任何表关系?

1 个答案:

答案 0 :(得分:0)

您可以使用以下条件进行笛卡尔连接:

select e1.id,e2.id from Entity1 e1, Entity2 e2 where e1.fieldX=e2.fieldY