A Guide to SQL, Ninth Edition Solutions 5-1
Chapter 5: Multiple-Table Queries
Solutions
Answers to Review Questions
1. Indicate in the SELECT clause all columns to display, list in the FROM clause all
2. You must qualify names if the same name appears in more than one of the tables listed
3. IN and EXISTS.
5. An alias is an alternate name for a table. To specify one in SQL, follow the name of the
6. List the table twice in the FROM clause, using two different aliases. Use these aliases
7. Use the UNION, INTERSECT, and MINUS operators to create a union, intersection,
8. Two tables are union-compatible if they have the same number of columns and if their
corresponding columns have identical data types and lengths.
10. If a subquery is preceded by the ANY operator, the condition is true if it is satisfied
by any value (one or more) produced by the subquery.
12. In a left outer join, all rows from the left table (that is, the first table listed) are
13. In a right outer join, all rows from the table on the right will be included regardless of
whether they match rows from the table on the left. Rows from the table on the left