Viewing 2 posts - 1 through 2 (of 2 total)
The first part of the question was fine, but the second "SQL Server does not have an efficient way to retrieve rows based on a known value for PersonID." is...
April 20, 2010 at 9:09 am
#1154666
Has anyone brought up the "IS" keyword?
DECLARE @var nvarchar(32)
SET @var = NULL
IF @var IS NULL
BEGIN
PRINT 'True'
END
ELSE
PRINT 'False'
February 27, 2007 at 8:19 am
#692059