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
Modern Database Management Study Set 1
Quiz 7: Advanced SQL
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
A named set of SQL statements that are considered when a data modification occurs are called:
Question 22
Multiple Choice
In SQL, a(n) ________ subquery is a type of subquery in which processing the inner query depends on data from the outer query.
Question 23
Multiple Choice
The outer join syntax does not apply easily to a join condition of more than ________ tables.
Question 24
Multiple Choice
What results would the following SQL statement produce? select owner, table_name From dba_tables Where table_name = 'CUSTOMER';
Question 25
Multiple Choice
A type of query that is placed within a WHERE or HAVING clause of another query is called a:
Question 26
Multiple Choice
In which of the following situations would one have to use an outer join in order to obtain the desired results?
Question 27
Multiple Choice
If the DBA wishes to describe all tables in the database, which data dictionary view should be accessed in Oracle?
Question 28
Multiple Choice
SQL-invoked routines can be:
Question 29
Multiple Choice
The ________ DBA view shows information about all users of the database in Oracle.
Question 30
Multiple Choice
SQL provides the ________ technique, which involves placing an inner query within the WHERE or HAVING clause of an outer query.
Question 31
Multiple Choice
A join in which rows that do not have matching values in common columns are still included in the result table is called a(n) :
Question 32
Multiple Choice
All of the following are part of the coding structure for triggers EXCEPT:
Question 33
Multiple Choice
One major advantage of the outer join is that:
Question 34
Multiple Choice
________ takes a value of TRUE if a subquery returns an intermediate results table which contains one or more rows.
Question 35
Multiple Choice
While triggers run automatically, ________ do not and have to be called.
Question 36
Multiple Choice
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) ;