Thread
:
Basic Syntax explanation
View Single Post
#
1
(
permalink
)
02-29-2008, 07:27 AM
jw56578@gmail.com
Posts: n/a
Basic Syntax explanation
In T sql for sql server, what is the technical difference between the
comparisons "is" and "="
for example:
set @test = null
print @test is null -> true
print @test = null -> false
jw56578@gmail.com