Hi All, I want the query to take the sum of individual rows. e.g: Column1 Column2 123 132 want the sum of 123+132=255 213 321 213+321=534 Please help.. Thanks in Advance.
Most databases would be something like this: SELECT (Column1 + Column2) AS column_total FROM my_table;