SQL Tambahkan total baris berbeda dari ID yang sama

SELECT ID, NAME, SUM([NO]) 
FROM Your_TableName
GROUP BY ID, NAME;
Haze