View Single Post

   
  #1 (permalink)  
Old 02-29-2008, 07:27 AM
jw56578@gmail.com
 
Posts: n/a
Default 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

Reply With Quote