关系代数 select sigma(????????σ)
查询instructor表中dept_name等于 Physic的数据 σdept_name = "Physics"(instructor)
= ≠ < ≤ > ≥ and ∧ or ∨ not ┒
投影运算
查询表中的部分字段 ΠID,name,salary(instructor)
查询dept_name为Physics的数据的name
Πname(σdept_name ="Physics"(instructor))
并运算 U 合并两个查询的结果集(并运算的结果必须是相容的)
集合差 - 找出存在于一个集合而不在另一集合的元组
原文:https://www.cnblogs.com/Simon-cat/p/10917526.html