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
More questions
1. A benefit of using a stored procedure is that it can be distributed to client computers.
9. An SQL Server reserved word must be placed in brackets. If the word is not in brackets, SQL Server will try to interpret it as the name of one of its special words.