Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Using IDENTITY as a key column

    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...

  • RE: NULL Equals NULL?

    Has anyone brought up the "IS" keyword?

    DECLARE @var nvarchar(32)

    SET @var = NULL

    IF @var IS NULL

    BEGIN

    PRINT 'True'

    END

    ELSE

    BEGIN

    PRINT 'False'

    END

Viewing 2 posts - 1 through 2 (of 2 total)