- DocumentDB SQL 教程
- DocumentDB SQL - 首页
- DocumentDB SQL - 概述
- DocumentDB SQL - SELECT 语句
- DocumentDB SQL - FROM 语句
- DocumentDB SQL - WHERE 语句
- DocumentDB SQL - 运算符
- DocumentDB - BETWEEN 关键字
- DocumentDB SQL - IN 关键字
- DocumentDB SQL - VALUE 关键字
- DocumentDB SQL - ORDER BY 语句
- DocumentDB SQL - 迭代
- DocumentDB SQL - 连接
- DocumentDB SQL - 别名
- DocumentDB SQL - 数组创建
- DocumentDB - 标量表达式
- DocumentDB SQL - 参数化
- DocumentDB SQL - 内置函数
- LINQ to SQL 转换
- JavaScript 集成
- 用户定义函数
- 复合 SQL 查询
- DocumentDB SQL 有用资源
- DocumentDB SQL - 快速指南
- DocumentDB SQL - 有用资源
- DocumentDB SQL - 讨论
DocumentDB SQL - 运算符
运算符是保留字或字符,主要用于 SQL WHERE 子句中执行操作(例如比较和算术运算)。DocumentDB SQL 也支持各种标量表达式。最常用的为**二元和一元表达式**。
以下 SQL 运算符目前受支持,并可用于查询。
SQL 比较运算符
以下是 DocumentDB SQL 语法中所有可用比较运算符的列表。
序号 | 运算符和描述 |
---|---|
1 | = 检查两个操作数的值是否相等。如果相等,则条件为真。 |
2 | != 检查两个操作数的值是否不相等。如果不相等,则条件为真。 |
3 | <> 检查两个操作数的值是否不相等。如果不相等,则条件为真。 |
4 | > 检查左操作数的值是否大于右操作数的值。如果大于,则条件为真。 |
5 | < 检查左操作数的值是否小于右操作数的值。如果小于,则条件为真。 |
6 | >= 检查左操作数的值是否大于或等于右操作数的值。如果大于或等于,则条件为真。 |
7 | <= 检查左操作数的值是否小于或等于右操作数的值。如果小于或等于,则条件为真。 |
SQL 逻辑运算符
以下是 DocumentDB SQL 语法中所有可用逻辑运算符的列表。
序号 | 运算符和描述 |
---|---|
1 | AND AND 运算符允许在 SQL 语句的 WHERE 子句中存在多个条件。 |
2 | BETWEEN BETWEEN 运算符用于搜索在给定最小值和最大值之间的一组值中的值。 |
3 | IN IN 运算符用于将一个值与已指定的文字值列表进行比较。 |
4 | OR OR 运算符用于组合 SQL 语句的 WHERE 子句中的多个条件。 |
5 | NOT NOT 运算符反转与其一起使用的逻辑运算符的含义。例如,NOT EXISTS、NOT BETWEEN、NOT IN 等。这是一个否定运算符。 |
SQL 算术运算符
以下是 DocumentDB SQL 语法中所有可用算术运算符的列表。
序号 | 运算符和描述 |
---|---|
1 | + **加法** - 将运算符两侧的值相加。 |
2 | - **减法** - 从左操作数中减去右操作数。 |
3 | * **乘法** - 将运算符两侧的值相乘。 |
4 | / **除法** - 将左操作数除以右操作数。 |
5 | % **模** - 将左操作数除以右操作数并返回余数。 |
在本例中,我们也将考虑相同的文档。以下是**AndersenFamily**文档。
{ "id": "AndersenFamily", "lastName": "Andersen", "parents": [ { "firstName": "Thomas", "relationship": "father" }, { "firstName": "Mary Kay", "relationship": "mother" } ], "children": [ { "firstName": "Henriette Thaulow", "gender": "female", "grade": 5, "pets": [ { "givenName": "Fluffy", "type": "Rabbit" } ] } ], "location": { "state": "WA", "county": "King", "city": "Seattle" }, "isRegistered": true }
以下是**SmithFamily**文档。
{ "id": "SmithFamily", "parents": [ { "familyName": "Smith", "givenName": "James" }, { "familyName": "Curtis", "givenName": "Helen" } ], "children": [ { "givenName": "Michelle", "gender": "female", "grade": 1 }, { "givenName": "John", "gender": "male", "grade": 7, "pets": [ { "givenName": "Tweetie", "type": "Bird" } ] } ], "location": { "state": "NY", "county": "Queens", "city": "Forest Hills" }, "isRegistered": true }
以下是**WakefieldFamily**文档。
{ "id": "WakefieldFamily", "parents": [ { "familyName": "Wakefield", "givenName": "Robin" }, { "familyName": "Miller", "givenName": "Ben" } ], "children": [ { "familyName": "Merriam", "givenName": "Jesse", "gender": "female", "grade": 6, "pets": [ { "givenName": "Charlie Brown", "type": "Dog" }, { "givenName": "Tiger", "type": "Cat" }, { "givenName": "Princess", "type": "Cat" } ] }, { "familyName": "Miller", "givenName": "Lisa", "gender": "female", "grade": 3, "pets": [ { "givenName": "Jake", "type": "Snake" } ] } ], "location": { "state": "NY", "county": "Manhattan", "city": "NY" }, "isRegistered": false }
让我们来看一个简单的示例,其中比较运算符用于 WHERE 子句。
在此查询中,在 WHERE 子句中,指定了 (WHERE f.id = "WakefieldFamily") 条件,它将检索 ID 等于 WakefieldFamily 的文档。
SELECT * FROM f WHERE f.id = "WakefieldFamily"
执行上述查询后,它将返回 WakefieldFamily 的完整 JSON 文档,如下面的输出所示。
[ { "id": "WakefieldFamily", "parents": [ { "familyName": "Wakefield", "givenName": "Robin" }, { "familyName": "Miller", "givenName": "Ben" } ], "children": [ { "familyName": "Merriam", "givenName": "Jesse", "gender": "female", "grade": 6, "pets": [ { "givenName": "Charlie Brown", "type": "Dog" }, { "givenName": "Tiger", "type": "Cat" }, { "givenName": "Princess", "type": "Cat" } ] }, { "familyName": "Miller", "givenName": "Lisa", "gender": "female", "grade": 3, "pets": [ { "givenName": "Jake", "type": "Snake" } ] } ], "location": { "state": "NY", "county": "Manhattan", "city": "NY" }, "isRegistered": false, "_rid": "Ic8LAJFujgECAAAAAAAAAA==", "_ts": 1450541623, "_self": "dbs/Ic8LAA==/colls/Ic8LAJFujgE=/docs/Ic8LAJFujgECAAAAAAAAAA==/", "_etag": "\"00000500-0000-0000-0000-567582370000\"", "_attachments": "attachments/" } ]
让我们来看另一个示例,其中查询将检索等级大于 5 的子项数据。
SELECT * FROM Families.children[0] c WHERE (c.grade > 5)
执行上述查询后,它将检索以下子文档,如输出所示。
[ { "familyName": "Merriam", "givenName": "Jesse", "gender": "female", "grade": 6, "pets": [ { "givenName": "Charlie Brown", "type": "Dog" }, { "givenName": "Tiger", "type": "Cat" }, { "givenName": "Princess", "type": "Cat" } ] } ]