I have letter \"a\", \"b\", \"c\". I would like my results to be \"b\", \"c\", \"d\" in TSQL respectively. Would what I use to achieve this?
Use ASCII to get the value of the character, add one, and use CHAR to convert the value back to a character.
ASCII
CHAR
SELECT CHAR(ASCII('a') + 1)