IceEyes writes "I have a table that's made of several REAL number columns. Each column has approx. 20 rows of data. Table is similar to below:Column1 Column2 Column3------- ------- --------1.0 2.2 -2.0 3.0 1.0 -1.1What I want is to sum up each column seperately, 2.0 3.2 -3.1and then sort them from max. to min. value in the resultset as:Column2 Column1 Column3------- ------- ------- 3.2 2.0 -3.1
How will I do this?Thanks for recommendations and answers."