Skip to content

Commit 18ad9f7

Browse files
authored
Update where.md to fix table
Fixed formatting on table of operators and examples
1 parent 8175cdd commit 18ad9f7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,15 @@ In this final example, a property reference to a boolean property is used as the
5858

5959
- In order for an item to be returned, an expression specified as a filter condition must evaluate to true. Only the boolean value ``true`` satisfies the condition, any other value: ``undefined``, ``null``, ``false``, a number scalar, an array, or an object doesn't satisfy the condition.
6060
- If you include your partition key in the ``WHERE`` clause as part of an equality filter, your query automatically filters to only the relevant partitions.
61-
- You can use the following supported binary operators:
62-
| | Operators |
61+
- You can use the following supported binary operators:
62+
63+
| Operators | Examples |
6364
| --- | --- |
6465
| **Arithmetic** | ``+``,``-``,``*``,``/``,``%`` |
65-
| **Bitwise** | ``|``, ``&``, ``^``, ``<<``, ``>>``, ``>>>`` *(zero-fill right shift)* |
66+
| **Bitwise** | ``\|``, ``&``, ``^``, ``<<``, ``>>``, ``>>>`` *(zero-fill right shift)* |
6667
| **Logical** | ``AND``, ``OR``, ``NOT`` |
6768
| **Comparison** | ``=``, ``!=``, ``<``, ``>``, ``<=``, ``>=``, ``<>`` |
68-
| **String** | ``||`` *(concatenate)* |
69+
| **String** | ``\|\|`` *(concatenate)* |
6970

7071
## Related content
7172

0 commit comments

Comments
 (0)