stressball
Programmer
I have the following query:
select sum(installment) as Total from loan
where nextpaymntdate >= [Please Enter Start Date]
and nextpaymntdate <= [Please Enter End Date]
and balance > 0;
It should work fine, but it is not returning anything, when I know it should as I have run the query (in Oracle syntax) against the same data in Oracle and it returns the correct result. Any ideas would be most appreciated.
select sum(installment) as Total from loan
where nextpaymntdate >= [Please Enter Start Date]
and nextpaymntdate <= [Please Enter End Date]
and balance > 0;
It should work fine, but it is not returning anything, when I know it should as I have run the query (in Oracle syntax) against the same data in Oracle and it returns the correct result. Any ideas would be most appreciated.