Skip to content

Commit 19200a2

Browse files
authored
Merge pull request #103181 from timsander1/master
add reference to IN clause doc
2 parents d915323 + c88cb04 commit 19200a2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/cosmos-db/sql-query-where.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: WHERE clause in Azure Cosmos DB
33
description: Learn about SQL WHERE clause for Azure Cosmos DB
4-
author: markjbrown
4+
author: timsander1
55
ms.service: cosmos-db
66
ms.topic: conceptual
7-
ms.date: 06/10/2019
8-
ms.author: mjbrown
7+
ms.date: 02/03/2020
8+
ms.author: tisande
99

1010
---
1111
# WHERE clause in Azure Cosmos DB
@@ -99,10 +99,10 @@ You can also use the unary operators +,-, ~, and NOT in queries, as shown in the
9999
WHERE (-c.grade = -5) -- matching grades == 5
100100
```
101101

102-
You can also use property references in queries. For example, `SELECT * FROM Families f WHERE f.isRegistered` returns the JSON item containing the property `isRegistered` with value equal to `true`. Any other value, such as `false`, `null`, `Undefined`, `<number>`, `<string>`, `<object>`, or `<array>`, excludes the item from the result.
102+
You can also use property references in queries. For example, `SELECT * FROM Families f WHERE f.isRegistered` returns the JSON item containing the property `isRegistered` with value equal to `true`. Any other value, such as `false`, `null`, `Undefined`, `<number>`, `<string>`, `<object>`, or `<array>`, excludes the item from the result.
103103

104104
## Next steps
105105

106106
- [Getting started](sql-query-getting-started.md)
107-
- [Azure Cosmos DB .NET samples](https://github.com/Azure/azure-cosmos-dotnet-v3)
107+
- [IN keyword](sql-query-keywords.md#in)
108108
- [FROM clause](sql-query-from.md)

0 commit comments

Comments
 (0)