C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
9
Reply
Define Joins?
Ankur Jain
11y
2k
2
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
JOIN clause is used to combine rows from two or more tables, based on a common field between them. Below is list of Different SQL JOINs: INNER JOIN: Returns all rows when there is at least one match in BOTH tables LEFT JOIN: Return all rows from the left table, and the matched rows from the right table RIGHT JOIN: Return all rows from the right table, and the matched rows from the left table FULL JOIN: Return all rows when there is a match in ONE of the tables
Shivam Shukla
10y
0
JOINS the join means the relation between two table
Gokul Rathod
11y
0
Joins are basically use in database for getting values(rows/columns) from more than one tables.
Piyush R.
11y
0
Joins are used to get the data from More than one table at a time. it may based on some condition or may not. in SQL server we have three types of joins 1.Inner Join 2.cross Join 3.Outer Join.
Yadagiri Reddy
11y
0
join used to retrieving data from more than one table.
Amol Ghanwat
11y
0
A JOIN clause is used to combine rows from two or more tables, based on a common field between them
Sarath Kumar
11y
0
http://dotnet-munesh.blogspot.in/2013/12/joining-in-sql-server.html
Munesh Sharma
11y
0
A Join combines columns and data from two or more tables (and in rare cases, of one table with itself called as self join). So basically there are 4 joins Inner join Outer Join Cross Join Self Join http://technet.microsoft.com/en-us/library/ms191472(v=sql.105).aspx
Akhil Garg
11y
0
A Join combines columns and data from two or more tables (and in rare cases, of one table with itself).
Ankur Jain
11y
0
What are the different types of cursor?
Define Unique Key?
Message