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
Options
A. Equi-join
B. Natural join
C. Outer join
D. Cartesian join
Correct Answer
Equi-join
Advanced SQL problems
Search Results
1. Which of the following statements is true concerning subqueries?
Options
A. Involves the use of an inner and outer query.
B. Cannot return the same result as a query that is not a subquery.