Using T-SQL, how would I go about getting the last 3 characters of a varchar column?
So the column text is IDS_ENUM_Change_262147_190
IDS_ENUM_Change_262147_190
Because more ways to think about it are always good:
select reverse(substring(reverse(columnName), 1, 3))