Hi Friends
What is Self Join in SQL ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
rasul mohPosted Nov 24, 2012, 3:15 AM
SELECT column_name(s)
FROM table_name1
FULL JOIN table_name2
ON table_name1.column_name=table_name2.column_name
and also go http://www.w3schools.com/sql/sql_join.asp many query will available.
Please tick correct answer
Satyapriya NayakPosted Nov 23, 2012, 9:02 AM
When all of the data you want to retrieve is contained within a single table, but data needed to extract is related to each other in the table itself.
http://hightechpost.blogspot.in/2011/07/self-join-in-sql-server.html
http://learnsqlserver.in/3/Self-Join.aspx
http://www.sql-statements.com/sql-self-join.html
http://www.sqltutorial.org/sqlselfjoin.aspx
Sivaraman DhamodaranPosted Nov 23, 2012, 7:26 AM
Vithal WadjePosted Nov 23, 2012, 6:39 AM
Shankar MPosted Nov 23, 2012, 6:34 AM
Self - Join is joining a table to itself,considering each as individual tables usually with an alias name to differentiate each other.
Generally, we will write Self-join like this,