📜  门| GATE-CS-2014-(Set-3) |第 65 题

📅  最后修改于: 2021-09-25 07:01:25             🧑  作者: Mango

GATECS2014Q30
(一) A
(乙)
(C)
(四)答案:(一)
说明:上述问题中的关系代数表达式,执行 4 次操作,一步一步(最里面的大括号在前)。

1. Select those tuples from relation r which satisfies
   expression/condition F1, say the result of this 
   operation is set A.

2. Select those tuples from set A which satisfies
   expression/condition F2, say the result of this
   operation is set B.

3. Select attrributes set A2 from set B, say the 
   result of this operation is set C.

4. Select attrributes set A1 from set C, say the 
   result is set D which is the final result.

现在为了优化这个表达式,我们可以在 F1 和 F2 条件之间通过 AND运算符组合操作/步骤 1 和 2,如 F1 ^ F2,而不是选择第一个属性集 A2,我们可以直接从结果中选择属性集 A1组合操作,由选项 A 中的表达式表示。这个问题的测验