SQL RIGHT Function

The SQL Server RIGHT function returns the rightmost characters from a given expression. The SQL RIGHT function uses its second argument to decide the number of characters it should return, and its syntax. SELECT RIGHT(Character_Expression, Value) FROM [Source] The index position in the SQL Server RIGHT Function will start from 1, Not 0. For this … Read more