How to Sum multiple lines in sql

后端 未结 8 1791
猫巷女王i
猫巷女王i 2020-12-11 12:16

I have multiple lines of data all sharing the same Company id.

Is there a way to \'sum\' all the amounts to give me one line of data per company id using SQL Server

8条回答
  •  無奈伤痛
    2020-12-11 12:39

    Try this;

    SELECT Company_Name, Company_ID, SUM(Amount) AS Amount
    FROM Companies
    GROUP BY Company_Name, Company_ID;
    

    Demo here.

提交回复
热议问题