2
0
Fork 0
mirror of https://github.com/Vonng/ddia.git synced 2026-06-21 00:47:05 +08:00

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 时,它紧密地遵循关系代数的结构: