I have string '12B17T' which represents exactly YYMDDA (A is an irrelevant attribute).
For months, 1-9 is used for January to September; A-C is used for October, November, and December
The size of this string is fixed (e.g. if the date is January 1, 2012, it will look like '12101T')
How do I get something like 17.11.2012 from this using SQL?
Try this;
SQL Demo Fiddle here