Ankur Jain
Define Joins?
By Ankur Jain in SQL Server on Aug 18 2014
  • Shivam Shukla
    Feb, 2015 4

    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

    • 0
  • Gokul Rathod
    Nov, 2014 25

    JOINS the join means the relation between two table

    • 0
  • Piyush R.
    Nov, 2014 12

    Joins are basically use in database for getting values(rows/columns) from more than one tables.

    • 0
  • Yadagiri Reddy
    Oct, 2014 17

    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.

    • 0
  • Amol Ghanwat
    Oct, 2014 9

    join used to retrieving data from more than one table.

    • 0
  • Sarath Kumar
    Oct, 2014 8

    A JOIN clause is used to combine rows from two or more tables, based on a common field between them

    • 0
  • Munesh Sharma
    Oct, 2014 7

    http://dotnet-munesh.blogspot.in/2013/12/joining-in-sql-server.html

    • 0
  • Akhil Garg
    Sep, 2014 14

    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

    • 0
  • Ankur Jain
    Aug, 2014 18

    A Join combines columns and data from two or more tables (and in rare cases, of one table with itself).

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS