当前位置: 代码迷 >> Oracle认证考试 >> difference、projection、selection、intersection、intersection何解?解决思路
  详细解决方案

difference、projection、selection、intersection、intersection何解?解决思路

热度:2268   发布时间:2013-02-26 00:00:00.0
difference、projection、selection、intersection、intersection何解?
Q: 102 A SELECT statement can be used to perform these three functions:

1. Choose rows from a table.
2. Choose columns from a table.
3. Bring together data that is stored in different tables by creating a link between them.
Which set of keywords describes these capabilities?

A. difference, projection, join
B. selection, projection, join
C. selection, intersection, join
D. intersection, projection, join
E. difference, projection, product

Answer: B

问下,这个题目意思我懂了,但是difference、projection、selection、intersection、intersection都是干嘛的啊?不是sql关键字又不是sql术语啊,怎么识别呢?
------最佳解决方案--------------------------------------------------------
这个属于关系型数据库理论知识。
Selection:选择。意思是从表中查询出部分行。
Projection:投影。意思是从表中查询出部分列。
intersection:交集。多表的共同部分。
difference:同上就是不同部分。。
------其他解决方案--------------------------------------------------------
引用楼主 ocp_toad 的帖子:
Q: 102 A SELECT statement can be used to perform these three functions: 

1. Choose rows from a table. 
2. Choose columns from a table. 
3. Bring together data that is stored in different tables by creating a link between them. 
Which set of keywords describes these capabilities? 

A. difference, projection, join 
B. selection, projection, join 
C. selection, intersection, join 
D. int…


是关系型数据库里面的描述术语,平常的国内的教材书籍里面没有提到,因为都被翻译成中文了,嘻嘻!

difference:差集
projection:关联
selection:查询
intersection:交集,2表或者多表关联


------其他解决方案--------------------------------------------------------
阿飞第三方
  相关解决方案