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
excel userform textbox cannot setfocus to itself
Help needed with Index MATCH
How can I have a datagridview column to store array
MYSql Beginners. Backup of a database stored in localhost
sql linked servers
Loading Multiple RSS feeds into specific Divs
How can I make a method that targets Control and MenuItem
VMware - vmkfstools - Server to ESXi
Help with Radio buttons in Excel
Better Way of styling?