1.

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?(a) Equi-join(b) Natural join(c) Outer join(d) Cartesian joinI have been asked this question in an interview for job.My question is taken from Joins topic in chapter Laying the Foundation of SQL Server

Answer»

Right ANSWER is (d) CARTESIAN join

For explanation I would SAY: Cartesian Join is simply the JOINING of one or more table which returns the product of all the ROWS in these tables.



Discussion

No Comment Found

Related InterviewSolutions