I have a table (table1) :
=====================================
| column1 | Column2 |
=====+========+===============+=====|
| 1 | 1 |
|----+--------+---------------+-----|
| 2 | 2 |
|----+--------+---------------+-----|
I need this output
====================
| Sum |
=====+========+=====
| 2 |
|----+--------+----|
| 4 |
|----+--------+----|
I basically just need the sum of each field side by side combined into one new column.
1 Answer