如何在 HQL 中连接两个在数据库中没有关系的表

How to Join two tables in HQL,which doesn't have relationship in Database

能否请您告诉我是否可以在 HQL hibernate 中进行连接,它在数据库中没有任何 table 关系?

您可以在 where 中使用条件进行笛卡尔连接,如下所示:

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