Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@dancer-engineer-EJ8rGI • 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. -
@anoop-kumar-GDGRCn • 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. -
@dancer-engineer-EJ8rGI • 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. -
@praveenkumar-66Ze92 • Jan 25, 2012