I have queries using microsft access 2007 and vb.net. If I tried to execute it in microsoft access manually then the result was fine. But using code in vb.net I the result I've got was all the same
Please help...
here is the code
"SELECT " & _
"amount as sss_loan_amount," & _
"(SELECT amount FROM pr_deduction " & _
"INNER JOIN pr_employee_deduction " & _
"ON pr_deduction.deduction_id = pr_employee_deduction.deduction_id " & _
"WHERE pr_deduction.deduction_type = 'pag-ibig' " & _
"AND employee_id = 60) as pagibig_amount," & _
"(SELECT amount FROM pr_deduction " & _
"INNER JOIN pr_employee_deduction " & _
"ON pr_deduction.deduction_id = pr_employee_deduction.deduction_id " & _
"WHERE pr_deduction.deduction_type = 'cash Advance' " & _
"AND employee_id = 60) as cashadvance_amount " & _
"FROM pr_deduction " & _
"INNER JOIN pr_employee_deduction " & _
"ON pr_deduction.deduction_id = pr_employee_deduction.deduction_id " & _
"WHERE pr_deduction.deduction_type = 'sss loan' " & _
"AND employee_id = 60 "
in access the result are the ff
sss_loan_amount pagibig_amount cashadvance_amount 1100 1200 1300
using code below the output are the same "1100" . I couldn't trace why.
MsgBox(reader("sss_loan_amount"))
MsgBox(reader("pagibig_amount"))
MsgBox(reader("cashadvance_amount"))