简体   繁体   中英

SQL Query Calculate Total

So let's say I have data in my query like this:

Name: |  Cost:
Oliver     20
Oliver     3
Oliver     2
Sarah      100
Sarah      7

How would I go about merging the data for each person into one row and having a total cost?

you can use group by and sum()

select name, sum(cost)
from your_table
group by  name 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM