Merge pull request #282 from WAangzE/patch-1

Fix a mathematical environment issue.
This commit is contained in:
YIN, Gang 2023-02-16 21:30:03 +08:00 committed by GitHub
commit 2ba635be0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

6
ch2.md
View File

@ -316,10 +316,12 @@ function getSharks() {
```
在关系代数中:
$$
sharks = σ_{family = "sharks"}(animals)
sharks = \sigma_{family = "sharks"}(animals)
$$
σ(希腊字母西格玛)是选择操作符,只返回符合条件的动物,`family="shark"`。
$\sigma$(希腊字母西格玛)是选择操作符,只返回符合条件的动物,`family="shark"`。
定义 SQL 时,它紧密地遵循关系代数的结构: