Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
A Guide to SQL
Quiz 5: Multiple-Table Queries
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Multiple Choice
Which of the following joins compares the tables in the FROM clause and lists only those rows that satisfy the condition in the WHERE clause?
Question 42
Multiple Choice
In a ____,all rows from the table on the right will be included regardless of whether they match rows from the table on the left.
Question 43
Short Answer
SQL performs many built-in ____________________ that analyze queries to determine the best way to satisfy them.
Question 44
Short Answer
The subquery that involves a table listed in the outer query is called a(n)____________________ subquery.
Question 45
Short Answer
When tables are listed in the FROM clause,you can give each table a(n)____________________,or an alternate name.
Question 46
Multiple Choice
Oracle and SQL Server support the ____ operator but Microsoft Access does not.
Question 47
Short Answer
To retrieve data from more than one table,you must ____________________ the tables together by finding rows in the two tables that have identical values in matching columns.
Question 48
Short Answer
You join tables in SQL by including a condition in the ____________________ clause to ensure that matching columns contain equal values.
Question 49
Multiple Choice
In a(n) ____ join,all rows from both tables are included regardless of whether they match rows from the other table.
Question 50
Multiple Choice
For an SQL implementation to truly support the union operation,it must remove ____ rows automatically.
Question 51
Multiple Choice
In a ____,all rows from the table on the left (the table listed first in the query) will be included regardless of whether they match rows from the table on the right (the table listed second in the query) .
Question 52
Short Answer
Joining a table to itself is called a(n)____________________.
Question 53
Short Answer
A subquery within a subquery is called a(n)____________________ subquery.
Question 54
Short Answer
In a multiple-table query,you list all the desired columns in the ____________________ clause and qualify any columns that appear in more than one table.
Question 55
Multiple Choice
Two tables are ____ compatible if they have the same number of columns and if their corresponding columns have identical data types and lengths.
Question 56
Short Answer
If you had two separate tables for customers and the query requested customers in the first table having the same city as customers in the second table,you could use a normal ____________________ operation to find the answer.