Columns with Sum of positive and negative values.
A table with single column is provided with integer values. Task is to create two separate columns with sum of positive and negative values respectively. Input Table: integer_values id 5 15 25 0 -20 -30 Output Table sum_positive sum_negative 45 -50 Explanation : Sum of positive numbers ( i.e. 5,15,25) is 45 Sum … Read more