Skip to content

Commit

Permalink
Typo Fix: Change NULLLIF to NULLIF (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
username1001 authored Oct 30, 2023
1 parent 4cd621e commit 00ea603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Instructions/Labs/01-get-started-with-tsql.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ We've seen some examples of queries that return *NULL* values. *NULL* is general
FROM SalesLT.Product;
```
The **ISNULL** function replaces *NULL* values with a specified literal value. Sometimes, you may want to achieve the opposite result by replacing an explicit value with *NULL*. To do this, you can use the **NULLLIF** function.
The **ISNULL** function replaces *NULL* values with a specified literal value. Sometimes, you may want to achieve the opposite result by replacing an explicit value with *NULL*. To do this, you can use the **NULLIF** function.
4. Try the following query, which replaces the **Color** value "Multi" to *NULL*.
Expand Down

0 comments on commit 00ea603

Please sign in to comment.