Dear All,
I am trying to filder the records using order by desc but it is not working (for looping)
I tried GROUP BY emi_flag.booking_id1 DESC ORDER BY emi_flag.flag_id DESC but it shows first value only
this is my code
SELECT * FROM emi_flag
INNER JOIN booking_master ON emi_flag.booking_id1=booking_master.booking_id
WHERE emi_flag.booking_id1=104
OUTPUT
emi_id booking_id1 pay_date
1 22 10-11-2018
2 23 8-11-2018
3 22 20-11-2018
4 22 25-11-2018
I want Output like:
emi_id booking_id1 pay_date
1 23 18-11-2018
2 22 25-11-2018
I want Output like:
any Suggestions please…