vote up 0 vote down star
1

I have a group by clause in a sql statement and need to use an aggregate function to minus all the values in each group instead of adding like the Sum() function.

i.e.

SELECT Sum(A) 
FROM (  
  SELECT 2 AS A
  UNION 
  SELECT 1) AS t1

..so will evaluate 2+1 and return 3.

I need some way of doing 2-1 to return 1.

Hope this makes sense. Only way I can think of doing this would be to use CLR integration to make my own aggregate function.

Any other ideas?

flag

29% accept rate
Wouldn't that always evaluate to zero? – FlySwat Nov 11 '08 at 10:13
2-1 would equal 1 not zero. – HAdes Nov 11 '08 at 10:20
In your contrived example yes, but when grouping large amounts of data, I'm not seeing what your trying to do. – FlySwat Nov 11 '08 at 10:27
Simply trying to minus all the values in the resultset instead of adding them up like sum() does. i.e. instead of 1+2+3+4 i want 1-2-3-4. – HAdes Nov 11 '08 at 10:34
How you select the item from with you substract all the oter ? – MichaelT Nov 11 '08 at 11:11
show 1 more comment

closed as not a real question by HAdes Nov 11 '08 at 16:28

5 Answers

vote up 1 vote down

Reading your comments, I think you want something like this:

SELECT SUM(CASE WHEN ROWNUM=1 THEN 2*A ELSE -A END) 
FROM foo

Although to get reliable ordering you're probably going to need to use another select:

SELECT SUM(b) 
FROM (
  SELECT CASE WHEN ROWNUM=1 THEN 2*a ELSE -a END AS b
  FROM foo
  ORDER BY ???
);
link|flag
just noticed this was a SQL Server question - I thought I was looking at Oracle questions. I'll leave my answer just in case it helps. – Steve Bosman Nov 12 '08 at 10:11
vote up 2 vote down

From your question it isn't exactly clear what you want to do. If you want the sum of all the values as if they were negative then you can just perform a SUM(), and multiply by -1 to return a negative result.

In your example it looks like you want to get the sum of the first row in the table, minus all the other values. So if you had the values 10, 15, 5, 20 you'd want: 10 - 15 - 5 - 20. This value is the same as 10 - (15 + 5 + 20). You can get the first row in a table using LIMIT. We'll also need the primary key for the next stage:

SELECT primary_key AS pk, field FROM table LIMIT 1;

We can get the sum of all the other rows by excluding the above one:

SELECT SUM(field) FROM table WHERE primary_key != pk;

You can then subtract the second value from the first.

link|flag
vote up 0 vote down

I'm not sure WHY you'd want this, but I'd just SUM the negative values of the data returned:

SELECT Sum(A) 
FROM (  
  SELECT (2 * -1) AS A
  UNION 
  SELECT (1)) AS t1
link|flag
My example was for demonstration purposes. I'm actually not doing a union. Its simply select sum(A) from tableA so you can't negate one of the rows like you suggest. – HAdes Nov 11 '08 at 10:20
vote up 0 vote down

SUM() works, as 2+1 == 1+2, whereas 2-1 != 1-2, so such a function would produce different results when the ORDER BY changes, if it were to exist.

link|flag
I understand this, but I will be absoluting the answer anyway. so abs(2-1) is same as abs(1-2). Sorry i didn't think i'd need to mention that. – HAdes Nov 11 '08 at 10:16
This works for two values. For more, you can get abs(1-2-3) != abs(3-2-1). – che Nov 11 '08 at 10:42
vote up 2 vote down

How will you identify the item to be subtracted from?

Once that's been identified it's a SUM() multiplied by -1 and then added to that value.

Edit:

If it's the first value to be taken as the subtracted from then take that value, double it, then take away the sum of all the values. (Doubling it cancels out the effect of including it in the sum of all the values.)

select top 1 @var = [value]
from myTable 
order by [some condition] 

select @minused = (2 * @var)  - sum([value]) 
from myTable
link|flag
No need to identify anything. I simply want to take the first value and keep taking away everything else. i.e 2-1-1-2-3...etc etc. Then i have my result and can absolute it to get the difference. – HAdes Nov 11 '08 at 10:18
HAdes, I believe it does what you wanted. – kristof Nov 11 '08 at 10:34

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