Exam 12: Subqueries and Merge Statements

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

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)  uncorrelated \underline { \text { uncorrelated } } 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  multiple-row \underline { \text { multiple-row } } 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 > operator is referred to as a(n) ____ operator.

(Multiple Choice)
4.7/5
(40)

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
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)