Microsoft
Software
Hardware
Network
Question : Query Help
SELECT BALANCEAMOUNT FROM MONTHLYBILL
WHERE TRANSMONTH='MAY-2010'
AND MEMBERACCNO='B-100'
SELECT RECEIPTAMOUNT FROM MONTHLYBILL
WHERE TRANSMONTH='JUNE-2010'
AND MEMBERACCNO='B-100'
SELECT RECEIPTAMOUNT FROM MONTHLYBILL
WHERE TRANSMONTH='JULY-2010'
AND MEMBERACCNO='B-100'
Hi Need help to rewrite the above query to return result as follows
The ouput should be balanceamount (which is from monthy of may 2010)
-
sum(receiptamount) (which is from month of june july)
Answer : Query Help
SELECT
SUM(CASE WHEN TRANSMONTH='MAY-2010' THEN BALANCEAMOUNT END)
-SUM(CASE WHEN TRANSMONTH<>'MAY-2010' THEN RECEIPTAMOUNT END)
FROM MONTHLYBILL A
WHERE TRANSMONTH IN ('MAY-2010','JUNE-2010','J
ULY-2010')
AND MEMBERACCNO='B-100'
Random Solutions
How to get all child class or classes that implements an abstract class?
Would you support the Japanese putting up a memorial at Pearl Harbor?
Vlookup (ish) on a range.
How do I add var to a function
Need help inserting a pdf into the body of a email in outlook 2003
how to backup SBS 2008 to folder
Batch File Script Issue
add up the contents of an array
Regex to find webpage title
Zen cart NavMainLink color change