Skip to content

Commit 05e3321

Browse files
authored
added sql colorizer
1 parent c293fa5 commit 05e3321

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/t-sql/queries/is-null-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
4343

4444
## Syntax
4545

46-
```
46+
```syntaxsql
4747
expression IS [ NOT ] NULL
4848
```
4949

@@ -70,7 +70,7 @@ expression IS [ NOT ] NULL
7070
## Examples
7171
The following example returns the name and the weight for all products for which either the weight is less than `10` pounds or the color is unknown, or `NULL`.
7272

73-
```
73+
```sql
7474
USE AdventureWorks2012;
7575
GO
7676
SELECT Name, Weight, Color
@@ -83,7 +83,7 @@ GO
8383
## Examples: [!INCLUDE[ssSDWfull](../../includes/sssdwfull-md.md)] and [!INCLUDE[ssPDW](../../includes/sspdw-md.md)]
8484
The following example returns the full names of all employees with middle initials.
8585

86-
```
86+
```sql
8787
-- Uses AdventureWorks
8888

8989
SELECT FirstName, LastName, MiddleName

0 commit comments

Comments
 (0)