Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两张桌子。表 A 和表 B。它们有一些共同的列。我想要在此列上使用内部关节的关节结果。问题是他们没有任何PK Fk关系。
在 Hibernate 中是否可能,或者对于 Hibernate,关系是强制性的?如果这是可能的,如何实现?
总部:select a,b from A a,B b where a.prop = b.prop
select a,b from A a,B b where a.prop = b.prop
请注意,这将导致交叉连接并返回一个对象数组 ( Object[])
Object[]