Chapter 6 (Final) Flashcards
An SQL query that implements an outer join will return rows that do not have matching values in common columns.
True
It is better not to have a result set identified before writing GROUP BY and HAVING clauses for a query.
False
A subquery in which processing the inner query depends on data from the outer query is called a codependent query.
False
A join in which the joining condition is based on equality between values in the common column is called an equi-join.
True
MULTISET is similar to the table datatype.
False
The natural join is very rarely used.
False
A join that is based upon equality between values in two common columns with the same name and where one duplicate column has been removed is called a(n):
natural-join
The ________ DBA view shows information about all users of the database in Oracle.
DBA_USERS
Establishing IF-THEN-ELSE logical processing within an SQL statement can now be accomplished by using the CASE keyword in a statement.
True
The following code is an example of a(n):
SELECT Customer_T.CustomerID, Order_T.CustomerID,
CustomerName, OrderID
FROM Customer_T, Order_T
WHERE Customer_T.CustomerID = Order_T. CustomerID;
equi-join.
The outer join syntax does not apply easily to a join condition of more than ________ tables.
two
When a subquery is used in the FROM clause, it is called a denied table.
False
Subqueries can only be used in the WHERE clause.
False
A base table is the underlying table that is used to create views.
True
All of the following are advantages of SQL-invoked routines EXCEPT:
security.
________ takes a value of TRUE if a subquery returns an intermediate results table which contains one or more rows.
Exists
All of the following are part of the coding structure for triggers EXCEPT:
selection
In which of the following situations would one have to use an outer join in order to obtain the desired results?
A report is desired that lists all customers and the total of their orders during the most recent month, and includes customers who did not place an order during the month (their total will be zero).
EXISTS will take a value of ________ if the subquery returns an intermediate results table which contains one or more rows.
true
A ________ is a temporary table used in the FROM clause of an SQL query.
derived table
The following code would include:
SELECT Customer_T.CustomerID, Order_T.CustomerID,
CustomerName, OrderID
FROM Customer_T, Order_T
WHERE Customer_T.CustomerID = Order_T. CustomerID;
only rows that match both Customer_T and Order_T Tables.
The advantages of SQL-invoked routines are flexibility, efficiency, sharability, and applicability.
True
The following SQL statement is an example of a correlated subquery.
SELECT First_Name, Last_Name, Total_Sales FROM Salesman s1 WHERE Total_Sales > all (SELECT Total_Sales FROM Salesman s2 WHERE s1.Salesman_ID != s2.Salesman_ID);
True
In SQL, a(n) ________ subquery is a type of subquery in which processing the inner query depends on data from the outer query.
correlated
The following code is an example of a:
SELECT CustomerName, CustomerAddress, CustomerCity, CustomerState, CustomerPostalCode FROM Customer_T WHERE Customer_T.CustomerID = (SELECT Order_T.CustomerID FROM Order_T WHERE OrderID = 1008);
subquery