SUM over more than 1 column
683676Feb 6 2009 — edited Feb 9 2009Hi,
I want to summate the values in more than 1 column. My code is like this
SELECT SUM(Column_A + Column_B) AS Column_C FROM TABLE GROUP BY ID
but this doesn't work.
I also tried
SELECT SUM(Column_A & Column_B) AS Column_C FROM TABLE
doesn't worked either ...
Any ideas?
Greetings from Germany
Lars