• Thanks good question :-). For info rmation if we write question like this

    declare @a int

    declare @b-2 varchar(2)

    set @a = 10

    set @b-2 = ' '+@a +' '+ 2+' '

    select @a +' '+ @b-2

    then also output will be same.