Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
what are join especially why we use inner join.
Posted
Updated 12-Oct-11 11:24am
v2
Comments
RaviRanjanKr 12-Oct-11 17:25pm    
[Edited] Plz word to Please [/Edited]

Homework?

Used to select rows of two or more tables combined using a shared field or fields that match.

Check the wiki for more info:
http://en.wikipedia.org/wiki/Join_%28SQL%29[^]

Good luck!
 
Share this answer
 
Comments
RaviRanjanKr 12-Oct-11 17:25pm    
My 5+
Join allow you to view data from related tables in a single result set. to retrieve data from multiple tables the SQL server allows you to apply join.

An Inner join retrieve records from multiple join table by using comparison operator on a common column. when an inner join is applied, only rows with the values satisfying the join condition in the common column are displayed. Rows in both table that don't satisfy the join condition are not displayed.

Note An inner join is default join, therefore you can also apply an inner join by using the JOIN keyword. in addition you can use Inner Join keyword.
Reference Link :- MSDN-[Inner JOIN][^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900