Skip to content

Commit 22bfbf0

Browse files
authored
added syntaxsql and sql colorizers
1 parent 22abc84 commit 22bfbf0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

docs/t-sql/language-elements/not-equal-to-transact-sql-traditional.md

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

3636
## Syntax
3737

38-
```
38+
```syntaxsql
3939
expression <> expression
4040
```
4141

@@ -53,13 +53,12 @@ expression <> expression
5353
### A. Using <> in a simple query
5454
The following example returns all rows in the `Production.ProductCategory` table that do not have value in `ProductCategoryID` that is equal to the value 3 or the value 2.
5555

56-
```
56+
```sql
5757
-- Uses AdventureWorks
5858

5959
SELECT ProductCategoryID, Name
6060
FROM Production.ProductCategory
6161
WHERE ProductCategoryID <> 3 AND ProductCategoryID <> 2;
62-
6362
```
6463

6564
[!INCLUDE[ssResult](../../includes/ssresult-md.md)]

0 commit comments

Comments
 (0)