Fix a mathematical environment issue.

This commit is contained in:
Ze Wang 2023-02-16 04:41:37 -05:00 committed by GitHub
parent f9c006a0cf
commit 74eb54e10e
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 时,它紧密地遵循关系代数的结构: