Click here to Skip to main content
15,889,216 members

Comments by Boopalslm (Top 169 by date)

Boopalslm 5-May-23 12:05pm View    
DATE BillNo CSTNAME
01-04-23 0:00 2023-24/k-001 MARIMUTHU RANGASAMY
03-04-23 0:00 2023-24/k-002 MARIMUTHU RANGASAMY
10-04-23 0:00 2023-24/k-003 MARIMUTHU RANGASAMY

Sir i need this type of out put
Boopalslm 30-Dec-22 12:04pm View    
It is working fine. Thanks a lot.
Boopalslm 20-May-20 7:21am View    
where i am used your query, please combine above your query with my below query

SELECT cd.loandate, cd.cstname, cd.loanamt,
cb.cstname, cb.loanslno, cb.loanamt, cb.billdate, cb.totdueamt
FROM cstdetails cd
LEFT JOIN cstduebill cb ON cd.cstname = cb.cstname
WHERE rectno IN(
SELECT max(rectno)
FROM cstduebill
WHERE billdate between '2020-05-20' and '2020-05-20'
GROUP BY loanslno)
AND billdate between '2020-05-20' and '2020-05-20'
ORDER BY loanslno
Boopalslm 20-May-20 7:12am View    
Sir but how to get as on date cstdetails report
Boopalslm 20-May-20 6:52am View    
Yes, I am using this query already, but how to get as on date
Cstdetails