Hi,
Select d_disb_amt from t_loan_disburse ment where n_loanacc_no = $LoanAccountNo$ and n_disb_no =$DisbNo$ ;
How do i replace the values within the '$ $' with a value, ie I want to convert it to
Select d_disb_amt from t_loan_disburse ment where n_loanacc_no = 640 and n_disb_no =1 ;
Select d_disb_amt from t_loan_disburse ment where n_loanacc_no = $LoanAccountNo$ and n_disb_no =$DisbNo$ ;
How do i replace the values within the '$ $' with a value, ie I want to convert it to
Select d_disb_amt from t_loan_disburse ment where n_loanacc_no = 640 and n_disb_no =1 ;
Comment