Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
219 views
in Technique[技术] by (71.8m points)

java - Get the last record in each group with sum/count

There is a table table1 that contains data as shown below: code & amount is fields of table1.

I want to generate of report from records from table1 with group by each code and also get sum of each code, as shown below

enter image description here

Any idea about how to generate an output like above? For Java development

question from:https://stackoverflow.com/questions/65904165/get-the-last-record-in-each-group-with-sum-count

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You're really looking for 2 sets of results here. The individual row output and the group by output require 2 separate queries.

You could

SELECT code, amount
FROM table1
ORDER BY code

for the individual amounts, and

SELECT code, sum(amount)
FROM table1
GROUP BY code

for the sums.

Personally I'd rather avoid making a second query. Just use the first query and do the summing/formatting from within my Java code.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...