Another question on this topic actually. Is it possible to use
SELECT SUM(column1,column2,column3) FROM tablename
instead of:
SELECT SUM(column1) FROM tablename
Or does this have to be done differently like:
SELECT SUM(column1) AS column1, SUM(column2) AS column2, SUM(column3) AS column3 FROM tablename
Regards
Joe
