Skip to content
Advertisement

Why does Hibernate generate a CROSS JOIN for an implicit join of a @ManyToOne association?

Baur & King said in their book:

Implicit joins are always directed along many-to-one or one-to-one association, never through a collection-valued association.

[P 646, Ch 14]

But when I am doing that in the code it is generating a CROSS JOIN instead of an INNER JOIN.

Mapping is from Member2 (many-to-one) -> CLub.

But Club2 has no information about members and Member2 is having a Foreign Key of Club2.

My query is

And, Hibernate is generating the following SQL query:

Club2.java

Member2.java

hibernate.cfg.xml

Test.java

Advertisement

Answer

Most database engines will optimize the CROSS JOIN with a WHERE clause to a JOIN anyway, but I prefer to always use an explicit JOIN instead.

The CROSS JOIN is generated by the JOIN:

To avoid the second Club query you could write the query as follows:

This query will remove the CROSS JOIN and the secondary select while using bind parameters instead of hard-coded ones.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement