vote up 2 vote down star

I'm trying to write a SELECT statement to select the sum of field but I want to return the sum of numbers less than 30 and also the sum of numbers greater than 30. I realize I can do this with two selects joined together, but I was hoping to find a "neat" way of doing it.

flag
1  
I take it you're not interested in anything if the sum is equal to 30. – pjp Jul 3 at 8:16
Sum as in SUM across rows? Do you mean "<> 30" really? – gbn Jul 3 at 11:01

3 Answers

vote up 17 vote down

Something along these lines (correct the syntax for your environment):

SELECT
    sum(case when Field < 30 then Field else 0 end) as LessThan30,
    sum(case when Field > 30 then Field else 0 end) as MoreThan30
FROM
    DaTable
link|flag
+1 Neat it is. If its performance you need, I doubt anything would beat tow selects joined together. – Lieven Jul 3 at 8:05
That's assuming you have an index on the column. – Vilx- Jul 3 at 10:39
I do not think there is a performance problem with this query. Or to put it another way: there is no reason why two separate selects would be faster. And if you have an index on Field (and Field is not-null) this query can be resolved with just accessing that index. – Thilo Jul 3 at 10:47
1  
I suspect Oracle does not go so far as to check whether the aggregate functions will return the same result whether rows with NULL are included or not; much more likely it will force a FTS unless you add WHERE Field IS NOT NULL, which is what I'd recommend here. – Jeffrey Kemp Jul 3 at 14:23
2  
You could add a where clause: where Field is not null and Field != 30 May help if Field is 30 for most records and there's an index on Field. – Pop Jul 3 at 15:14
show 2 more comments
vote up 0 vote down

If i understand correctly, you have a single column which has numeric values and you want to find sum of this field for all thw rows where the field value is less than 30 and same condition with the variation of field value greater than 30. If this is correct, then you can use the below query and replcae the table and column name accordingly.

SELECT  SUM(CASE  		WHEN col1 < 30 THEN COL1  		ELSE 0 END
       ) 	SUM(CASE  		WHEN col1 < 30 THEN COL1  		ELSE 0 END
       ) FROM 	DATABASE.SCHEMANAME.TABLE

Thanks, Atul

link|flag
please ignore, answer is already posted by Vilx. Atul – Atul Jul 3 at 7:54
vote up 0 vote down

The requirement is a big vague, but I'll assume SUM across rows and <> 30. This is different to the case answer.

SELECT
    SelectCol1, SelectCol2, SelectCol3, ..., SUM(AggregateCol)
FROM
    Table
GROUP BY
    SelectCol1, SelectCol2, SelectCol3, ...
HAVING
    SUM(AggregateCol) <> 30
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.