I need order by Numbers from end of title but need as UNSIGNED result, i try to get last 5 digit from title table and sort but not giving natural result
title table
title1 (2015)
something (1999)
title1 (1994
title1 (2014)
My code
ORDER BY RIGHT(title,5) DESC
Result is
something (1999)
title1 (1994)
title1 (2014)
title1 (2015)
How can i Order like this:
title1 (2015)
title1 (2014)
something (1999)
title1 (1994)
Now this code order like 1,10,101,2,20,201 but i need like this 1,2,10,20,101,201