SQL Server NULLIF() Function
Definition and Usage
The NULLIF() function compares two expressions.
If expr1 and expr2 are equal, the NULLIF() function returns NULL. Otherwise, it returns expr1.
Syntax
NULLIF(expr1, expr2)
Parameter Values
Parameter | Description |
---|---|
expr1, expr2 | Required. The two expressions that will be compared (must be of same data type) |
Technical Details
Works in: | SQL Server 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, SQL Server 2005 |
---|