Skip to content
Advertisement

How to retrieve ONE column from another table with Foreign key using Hibernate / JPA

I would like to use the Foreign key “MODEL_ID” to retrieve just one column “MODEL_NAME” from the TT_CARS table, I tried the following code, that works but it returns the whole CARS object.

JavaScript

Also I tried the code below, its also not working

JavaScript

Is there other way to retieve just the column (MODEL_NAME) using hibernate and JPA??

remarks: The modelName should be part of the Options class.

my code

JavaScript

Advertisement

Answer

You can use @Formula. It is read-only calculated column that can be retrieved by the custom subquery. It does not present in the target table.

Defines a formula (derived value) which is a SQL fragment that acts as a @Column alternative in most cases. Represents read-only state.

Example:

JavaScript

Hibernate generated native query:

JavaScript

@SecondaryTable designed for @OneToOne relationship to map multiple tables to the same entity. It will not work for the @ManyToOne relationship.

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