declare @a char(20), @b char(20), @c char(20)set @a = 'abc'set @b = ' abfhfhh'set @c = 'ab df 'select LEN(@a), LEN(@b), LEN(@c)
Login to post response