Skip to content

Instantly share code, notes, and snippets.

@meklarian
Created May 8, 2013 02:04
Show Gist options
  • Save meklarian/5537683 to your computer and use it in GitHub Desktop.
Save meklarian/5537683 to your computer and use it in GitHub Desktop.
Never Forget: don't ever use = to check for NULL in MSSQL
-- SURPRISE, 0!
IF NULL = NULL
PRINT 1
ELSE
PRINT 0
GO
-- 1
IF NULL IS NULL
PRINT 1
ELSE
PRINT 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment