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 MySQL
Quiz 5: Multiple-Table Queries
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Short Answer
When tables are listed in the FROM clause, you can give each table a(n)____________________, or an alternate name.
Question 42
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 43
Short Answer
You join tables in SQL by including a condition in the ____________________ clause to ensure that matching columns contain equal values.
Question 44
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 45
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 46
Multiple Choice
The product of two tables is formally called the ____ Product.
Question 47
Short Answer
When there is potential ambiguity in listing column names, you must ____________________ the columns involved in the query.
Question 48
Short Answer
A subquery within a subquery is called a(n)____________________ subquery.
Question 49
Multiple Choice
If you precede the subquery by the ____ operator, the condition is true only if it satisfies all values produced by the subquery.
Question 50
Multiple Choice
In a(n) ____ join, all rows from both tables are included regardless of whether they match rows from the other table..
Question 51
Multiple Choice
If you precede the subquery by the ____ operator, the condition is true only if it satisfies any value (one or more) produced by the subquery.
Question 52
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 53
Short Answer
The subquery that involves a table listed in the outer query is called a(n)____________________ subquery.
Question 54
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.