Answers for "sql to aggregate two columns and get sum"

SQL
2

sql add two values together

SELECT  ID, SUM(VALUE1 + VALUE2)
FROM    tableName
GROUP   BY ID

--or simple addition

SELECT
	ID,
	(VALUE1 + VALUE2) as AddedValues
FROM tableName
Posted by: Guest on May-27-2020

Code answers related to "sql to aggregate two columns and get sum"

Code answers related to "SQL"

Browse Popular Code Answers by Language