Hibernate Projection Example (Sum)
In this section, you will learn to hibernate aggregate function like: sum() using hibernate projection.The following example to calculate the sum of invested_amount to the Insurance table
Table Name: Insurance
package roseindia.tutorial.hibernate; |
Output:
log4j:WARN No appenders could be found for logger (org.hibernate.cfg.Environment).log4j:WARN Please initialize the log4j system properly.Hibernate: select sum(this_.invested_amount) as y0_ from insurance this_ Total Invested Amount: [51400] |
No comments:
Post a Comment