declare @a int declare @b int set @a=5 set @b=11
select @a=@a^@b,@b=@b^@a,@a=@a^@b
print '@a='+convert(var char, @a)