Question : Order by using the last 2 characters of a column value. SQL  query

In a sql query I want the data to be sorted by last two characters of a column value. Is that possible?

I have attached a example of data that I want to sort. In the data given below I want it be sorted by the last two numbers of each value.

Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
N601.I140.20.ITXUTX12084
N601.I140.20.ITXUPX12899
N601.I140.20.ITXUPX12898
N601.I140.20.ITXUPX12893
N601.I140.20.ITXUP01370
N601.I140.20.ITXUP013006
N601.I140.20.ITXUP012984
N601.I140.20.ITXUI012995
N601.I140.20.ITXUI012809
N601.I140.20.ITXCPX12415
N601.I140.20.ITX6X0XXX10
Open in New Window Select All

Answer : Order by using the last 2 characters of a column value. SQL  query

order by RIGHT(columnName,2)
Random Solutions  
 
programming4us programming4us