natural join it is the similar like equi join


Natural Join: It is the similar like Equi join except one of the duplicate columns is removed in the result table. The natural join is the most usually used form of join operation.

Example :

SELECT CUSTOMER.CUTOID, CUSTONAME, ORDERID FROM CUSTOMER, ORDER

WHERE CUSTOMER.CUSTOID=ORDER.CUSTOID;

 Output will be:

custoid                            custoname                           orderid

-----------                        ---------------------        ----------

10                                   Pooja Enterprises                  1001

12                                   Estern Enterprises                 1002

3                                      Impressions                        1003

Request for Solution File

Ask an Expert for Answer!!
Database Management System: natural join it is the similar like equi join
Reference No:- TGS0209889

Expected delivery within 24 Hours