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 Outer join Cartesian join Equi-join Natural join TRUE ANSWER : ? YOUR ANSWER : ?
Outer join is the same as equi-join, except one of the duplicate columns is eliminated in the result table. False True TRUE ANSWER : ? YOUR ANSWER : ?
A function returns one value and has only output parameters. False True TRUE ANSWER : ? YOUR ANSWER : ?
A UNION query is which of the following? Combines the output from multiple queries and does not include the same number of columns. Combines the output from no more than two queries and must include the same number of columns. Combines the output from no more than two queries and does not include the same number of columns. Combines the output from multiple queries and must include the same number of columns. TRUE ANSWER : ? YOUR ANSWER : ?
With the UNION clause, each query involved must output the same number of columns, and they must be UNION compatible. False True TRUE ANSWER : ? YOUR ANSWER : ?
A correlated subquery is where the outer query depends on data from the inner query. True False TRUE ANSWER : ? YOUR ANSWER : ?
The code to create triggers and routines is stored in only one location and is administered centrally. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is one of the basic approaches for joining tables? Union Join Natural join Subqueries All of these TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is a correlated subquery? Uses the result of an inner query to determine the processing of an outer query. Uses the result of an outer query to determine the processing of an outer query. Uses the result of an inner query to determine the processing of an inner query. Uses the result of an outer query to determine the processing of an inner query. TRUE ANSWER : ? YOUR ANSWER : ?
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 ; Outer join Equi-join Natural join Cartesian join TRUE ANSWER : ? YOUR ANSWER : ?