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