Chapter 4 Relational Data Retrieval: SQL
a. relational Select operation
b. relational Project operation
c. combination of relational Select and Project operations
d. combination of relational Select, Project, and Join operations
e. None of the above.
17. In an SQL SELECT command a SELECT clause with several attributes, a FROM
clause with multiple tables and a WHERE clause with join fields set equal plus other
predicates indicate a(n) ____.
a. relational Select operation
b. relational Project operation
c. combination of relational Select and Project operations
d. combination of relational Select, Project, and Join operations
e. None of the above.
18. All of the following are true about the use of AND and OR operators in an SQL
SELECT command, except ____.
a. AND has higher precedence than OR
b. AND and OR can be used together with any of the comparison operators
c. OR means one condition or the other or both
d. enclosing an AND or an OR operation in parentheses ensures that it will be
performed before those outside of parentheses
e. either the AND or the OR operator may be used in a given SQL SELECT
command, but not both
19. The SQL SELECT BETWEEN operator is used ____.
a. to find a character string in between two specified character strings
b. to find a character string between a numeric value and a specified character string
c. to find a numeric value between two numeric values
d. to find a numeric value between a numeric value and a specified character string
e. to find a numeric value between two specified character strings