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.