View Full Version : Query help
filburt1
04-03-2004, 03:49 PM
I have a table with (for simplification) three columns: fromuserid, touserid, and amount. I want to find the sum of amount, but it is governed by the following (using 13 as a sample userid):
If touserid is 13, then add the amount to the sum
If fromuserid is 13, then subtract the amount from the sum
How would I do this?
Dean C
04-03-2004, 04:14 PM
Why not do your calculations outside of the query using PHP - makes for faster processing time :)
Xenon
04-03-2004, 06:13 PM
SELECT SUM(IF(fromuserid = 13, -1, 1)) FROM table WHERE fromuserid = 13 OR touserid = 13
that should work i think
filburt1
04-03-2004, 06:46 PM
SELECT SUM(IF(fromuserid = 13, -1, 1)) FROM table WHERE fromuserid = 13 OR touserid = 13
that should work i think
Close, got it working with this, thanks:
SELECT sum(IF(touserid = 13, amount, - amount))
FROM turtledollar
WHERE touserid = 13 OR fromuserid = 13
Xenon
04-03-2004, 06:52 PM
oops, i forgot that you ahve a special col with the ammount ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.