Answers for "SQL add a totals of differemt rows of the same id"

SQL
0

SQL add a totals of differemt rows of the same id

SELECT ID, NAME, SUM([NO]) 
FROM Your_TableName
GROUP BY ID, NAME;
Posted by: Guest on September-05-2021

Code answers related to "SQL add a totals of differemt rows of the same id"

Code answers related to "SQL"

Browse Popular Code Answers by Language