Skip to content
Advertisement

Sum variables when condition is met in sql

I have a table mes_transaction where I have variable dc – it’s either DEBIT or CREDIT. I am writing a sql procedure for another table(if I can say so). In the other table mes_aggregated_trx I have trx_amt – transaction amount variable. Basically what I need to do is to write a procedure that would sum trx_amt in mes_aggregated_trx based on dc from mes_transaction.

It would need to look like this(pseudo code):

IF dc = ‘CREDIT’ THEN ADDTOSUM(trx_amt) ELSE SUBFROMSUM(trx_amt)

I can’t figure it out how to implement the IF clause in the sql. Or maybe I should do something like summing CREDIT trx_amt, then summing DEBIT trx_amt, and then subtracting the sums to get desired result? But the problem is that the procedure looks like this:

So I would need to somehow redo the whole structure of the procedure, and I don’t really know that much to do that. So any help, tips or pieces of advice would be great! Thanks

Advertisement

Answer

would be in SQL something like:

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement