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 should try this.
SELECT * FROM Table order by SUBSTRING(name, -3);
good luck!