sql add a totals of differemt rows of the same id

Solutions on MaxInterview for sql add a totals of differemt rows of the same id by the best coders in the world

showing results for - "sql add a totals of differemt rows of the same id"
Bentley
07 Apr 2019
1SELECT ID, NAME, SUM([NO]) 
2FROM Your_TableName
3GROUP BY ID, NAME;
4
similar questions