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
if you want to specifically find strings which ends with desired characters then this would help you...
select * from tablename where col_name like '%190'