sql查询同一id的数据总和

我现在查询的结果为
id total
1 20
1 30
2 50
我想要得到结果是
id total
1 50
2 50
我的SQL语句是:
select id , sum(total) as sumtotal from table
group by id
得到的结果是
id sumtotal
1 100

慕尼黑的夜晚无繁华
浏览 1713回答 2
2回答

慕妹3146593

select id , sum(total) as sumtotal from tablegroup by id追问不要乱回答追答...........

慕工程0101907

select id,sum(total) totalfrom 表group by id追问不要乱回答追答....什么叫乱回答,你的问题是什么?我们几个写的都是对的1234567891011CREATE TABLE test(id INT,total int)INSERT INTO dbo.test        ( id, total )SELECT 1,20UNION ALLSELECT 1,30UNION ALLSELECT 2,50select id,sum(total) totalfrom testgroup by id结果:1 502 50你自己看看你一开始的数据到底是什么吧
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server