Multiple Choice
Contents of the CUSTOMERS table
-Based on the contents of the CUSTOMERS table,which SQL statement will display the customers residing in the same state as customer#1013?
A) SELECT customer# FROM customers WHERE customer# =
(SELECT state FROM customers WHERE state = 'NJ') ;
B) SELECT customer# FROM customers WHERE state =
(SELECT state FROM customers WHERE customer#=1013) ;
C) SELECT customer# FROM customers WHERE customer# IN
(SELECT state FROM customers WHERE state = 'NJ') ;
D) SELECT customer# FROM customers WHERE state EXISTS
(SELECT state FROM customers WHERE customer#=1013) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q34: The following SQL statement contains which type
Q35: When a multiple-column subquery is used in
Q36: Which of the following terms refers to
Q37: A(n)_ subquery is a nested query that
Q38: A correlated subquery is a subquery that
Q40: When a multiple-column subquery is used in
Q41: A(n)_ subquery returns more than one column
Q42: The > operator is referred to as
Q43: The <> operator is referred to as
Q44: The following SQL statement contains which type