1. | Which of the following is true concerning triggers? |
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss. |
2. | The following SQL is which type of join: SELECT CUSTOMER_T. CUSTOMER_ID, ORDER_T. CUSTOMER_ID, NAME, ORDER_ID FROM CUSTOMER_T,ORDER_T ; |
|||||||
Answer: Option D Explanation: No answer description available for this question. Let us discuss. |
3. | How many tables may be included with a join? |
|||||||
Answer: Option D Explanation: No answer description available for this question. Let us discuss. |
4. | Which of the following is a correlated subquery? |
|||||||
Answer: Option B Explanation: Correlated subquery references a column in the outer query and executes the subquery once for every row in the outer query while Uncorrelated subquery executes the subquery first and passes the value to the outer query.
|
5. | Which of the following statements is true concerning subqueries? |
|||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss. |
6. | A UNION query is which of the following? |
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss. |
7. | Embedded SQL is which of the following? |
|||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss. |
8. | The following SQL is which type of join: SELECT CUSTOMER_T. CUSTOMER_ID, ORDER_T. CUSTOMER_ID, NAME, ORDER_ID FROM CUSTOMER_T,ORDER_T WHERE CUSTOMER_T. CUSTOMER_ID = ORDER_T. CUSTOMER_ID |
|||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss. |