In my database there is multiple entries from same employee so I would like to get the Latest entry by way of identifying the auto number field. But using below sql code with distinct in eno is resulting duplicate entries.
SELECT distinct(eNo), auto_num from mc_employee
order by auto_num
Any clues about what I am doing wrong?