I have a table like:
id name -------- 1 clark_009 2 clark_012 3 johny_002 4 johny_010
I need to get results in this order:
You may apply substring_index function to parse these values -
select * from table order by substring_index(name, '_', -1)