Start networking and exchanging professional insights

Register now or log in to join your professional community.

Gayasuddin Mohammed
by Gayasuddin Mohammed , Advocate , Practicing Law before High Court at Hyderabad

Equi Join

Inner Join varA (+)= varB

Outer join varA = (+) varB.

THE DIFFERENT TYPES OF JOINS IN SQL ARE:-

1.INNER JOIN- THIS JOIN COMBINES THE COMMON ATTRIBUTE OF THE JOINING RELATION

2.LEFT JOIN- IN THIS JOIN THE PARENT RELATION IS ON THE RIGHT SIDE AND JOINING ATTRIBUTE IS ON THE LEFT SIDE

3. RIGHT JOIN- IN THIS JOIN THE PARENT RELATION IS ON THE LEFT SIDE AND THE JOINING ATTRIBUTE IS ON THE RIGHT SIDE

4. FULL OUTER JOIN- THIS JOIN COMBINES THE TWO ENTIRE RELATION

Ziauddin Zia
by Ziauddin Zia , Software Engineer , Asia Poultry Feeds (Pvt) Ltd

Types of the different SQL JOINs you can use:

  • 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

I am suggesting a link which will help you with examples:

http://www.w3schools.com/sql/sql_join.asp

Akhila Patwal
by Akhila Patwal , Software Tester , BEL

1) Inner Join  ex:select *from table_1 as t1

                    inner join table_2 as t2

                    on t1.IDcol=t2.IDcol 

2) Outer Join: left outer join

 ex:select *from table_1 as t1

                    left outer join table_2 as t2

                    on t1.IDcol=t2.IDcol 

right outer join :

 ex:select *from table_1 as t1

                    right outer join table_2 as t2

                    on t1.IDcol=t2.IDcol 

 

full outer join

 ex:select *from table_1 as t1

                    full outer join table_2 as t2

                    on t1.IDcol=t2.IDcol 

Lokesh M
by Lokesh M , Webite Maintaner , Focus Edumatics

There are four basic types of SQL joins: inner, left, right, and full.

Inner Join

Let’s say we wanted to get a list of those customers who placed an order and the details of the order they placed. This would be a perfect fit for an inner join, since an inner join returns records at the intersection of the two tables.

select first_name, last_name, order_date, order_amountfrom customers cinner join orders o

on c.customer_id = o.customer_id

 

 

 

Left Join

If we wanted to simply append information about orders to our customers table, regardless of whether a customer placed an order or not, we would use a left join. A left join returns all records from table A and any matching records from table B.

select first_name, last_name, order_date, order_amountfrom customers cleft join orders o

on c.customer_id = o.customer_id

 

 

 

Right Join

Right join is a mirror version of the left join and allows to get a list of all orders, appended with customer information.

select first_name, last_name, order_date, order_amountfrom customers cright join orders oonc.customer_id=o.customer_id

 

  Full Join

Finally, for a list of all records from both tables, we can use a full join.

select first_name, last_name, order_date, order_amount from customers c full join orders o on c.customer_id = o.customer_id

shakeel mir
by shakeel mir , Senior Software Developer , Rawat-Al-Makan

SQL Server has four type of join (inner join, left outer join, right outer join and full join)

Inner join: return all rows against the relation between of both table

Left outer join: return all row from the left table and relation match row of the right side table

Right outer join: return all row from the right table and relation match row of the left side table

Full Join: return all rows from left and right side tables both.

anant Singh
by anant Singh , engineer , bses rajdhani power limited

Joins are operational commands use to join Same or different field Data set, from different tables. 

mantu kumar kumar
by mantu kumar kumar , Qa/qc Mechanical Engineer , Fair Exports Private Limited

QL injection contains some dynamic statements which can be pass into SQL error affected area and retrieve the desired results from a database.

SAjid Munir
by SAjid Munir , IT Support officer , Muhammad ul hassan Cargo LLC

there are 3 types of joins used .

1. Inner join 

2. Outer join3. Full join 

  • INNER JOIN: all rows return  at least one colume or data type same in both table .
  • Outer JOIN: All rows return from the left table, and the matched rows from the right table.
  • Full Join :All the rows return  when one table match . 

More Questions Like This

Do you need help in adding the right keywords to your CV? Let our CV writing experts help you.