Exam 12: Subqueries and Merge Statements
Exam 1: Overview of Database Concepts108 Questions
Exam 2: Basic Sql Select Statements122 Questions
Exam 3: Table Creation and Management132 Questions
Exam 4: Constraints132 Questions
Exam 5: Data Manipulation and Transaction Control132 Questions
Exam 6: Additional Database Objects132 Questions
Exam 7: User Creation and Management132 Questions
Exam 8: Restricting Rows and Sorting Data132 Questions
Exam 9: Joining Data From Multiple Tables131 Questions
Exam 10: Selected Single Row Functions133 Questions
Exam 11: Group Functions134 Questions
Exam 12: Subqueries and Merge Statements132 Questions
Exam 13: Views133 Questions
Select questions type
Which operator will instruct Oracle10g to list all records with a value that is less than the highest value returned by the subquery?
(Multiple Choice)
4.8/5
(33)
A(n) subquery is when the outer query is executed first, then the inner query is executed. _________________________
(True/False)
4.8/5
(27)
A correlated subquery references one or more columns in the outer query, and the EXISTS operator is used to test whether the relationship or link is present.
(True/False)
4.9/5
(29)
Valid operators include =, >, <, >=, <=. _________________________
(True/False)
4.7/5
(39)
A group function cannot be included in the SELECT clause of a single-row subquery.
(True/False)
4.8/5
(41)
The following SQL statement contains which type of subquery? SELECT title, retail, (SELECT AVG(retail) FROM books)
FROM books;
(Multiple Choice)
4.9/5
(33)
A complete query nested inside another query is called a(n) ____.
(Multiple Choice)
4.7/5
(38)
A MERGE statement containing an UPDATE and an INSERT clause is also called a(n) ____________________ statement.
(Short Answer)
4.8/5
(35)
In Oracle11g, a(n) ____ allows a series of DML actions to occur.
(Multiple Choice)
4.9/5
(35)
The following SQL statement contains which type of subquery? SELECT title, retail, category, cataverage FROM books NATURAL JOIN
(SELECT category, AVG(retail) cataverage FROM books GROUP BY category);
(Multiple Choice)
4.7/5
(36)
In Oracle11g, subqueries nested in a WHERE clause can be nested to a depth of ____________________ subqueries.
(Short Answer)
4.7/5
(26)
Showing 121 - 132 of 132
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)