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
Explanation:
choose rows from a table is SELECTION,
Choose column from a table is PROJECTION
Bring together data in different table by creating a link between them is JOIN.
Incorrect answer:
A answer should have SELECTION, PROJECTION and JOIN.
C answer should have SELECTION, PROJECTION and JOIN.
D answer should have SELECTION, PROJECTION and JOIN.
E answer should have SELECTION, PROJECTION and JOIN.
Refer: Introduction to Oracle9i: SQL, Oracle University Study Guide, 1-6