SQL Server might have bug when dealing with 'null' valueDeclare @N as intset @N=NULLSelect len(isnull(@N,''))Select len(isnull(NULL,''))It should...
Separate names with a comma.