-
I learnt equi join & natural join. but what is inner join & outer join? Is equi join is also known as outer join & natural join as inner join??0
Howdy guest!
Dear guest, you must be logged-in to participate on CrazyEngineers. We would love to have you as a
member of our community. Consider creating an
account or login.
Replies
-
Member • Jan 22, 2012
Natural join is a subset of equi join which in turn is classified under inner join.LovesharmaIs equi join is also known as outer join & natural join as inner join??
Inner Join: Inner Join returns the set of only those records which matches in one table with another.Lovesharmabut what is inner join & outer join?
Outer Join: Outer Join return you the set of all matching records from both table. The Outer Join does not requires each records to be matched in both the tables.
Read <a href="https://en.wikipedia.org/wiki/Join_(SQL)" target="_blank" rel="nofollow noopener noreferrer">Join (Sql)</a> to understand with examples.Are you sure? This action cannot be undone. -
Member • Jan 23, 2012
If you are matching two table usnig a column or just added two tables in from clause(but no column compare) then automatically inner join will be applied.
Ex: select * from table Ta,Tb;
then inner join will be applied on Ta,Tb.Are you sure? This action cannot be undone. -
Member • Jan 23, 2012
Yes, Inner join is a default join.ianoopIf you are matching two table usnig a column or just added two tables in from clause(but no column compare) then automatically inner join will be applied.
Ex: select * from table Ta,Tb;
then inner join will be applied on Ta,Tb.Are you sure? This action cannot be undone. -
Member • Jan 25, 2012
I guess this can explain you better... 😀
Are you sure? This action cannot be undone.