« Estimating the cost of Business Intelligence | Tableau Public- great visualization now where do we get the data? »
Inner and outer joins SQL examples and the Join block
In this post I’ll show you how to do all the main types of Joins with clear SQL examples. The examples are written for Microsoft SQL Server, but very similar syntax is used in Oracle, MySQL and other databases.
If you are tired of writing SQL and want to try a visual tool, you should give Datamartist a try. The diagrams with the SQL examples are actually right from the tool- you just have to pick what parts of the Venn diagram you want, and the data is joined for you- no code.
Joins can be said to be INNER or OUTER joins, and the two tables involved are referred to as LEFT and RIGHT. By combining these two concepts you get all the various types of joins in join land: Inner, left outer, right outer, and the full outer join.
Tables used for SQL Examples
In the screen shots I’ve configured Datamartist to only show the name columns to save space. The SQL code shown is “Select *” so it will return all the columns. You can see that in the Datamartist tool the type of join is selected by just checking the parts of the venn diagram that contain the rows you want.
1) Inner Join SQL Example
select * from dbo.Students S INNER JOIN dbo.Advisors A ON S.Advisor_ID=A.Advisor_ID
2) Left Outer Join SQL Example
select * from dbo.Students S LEFT OUTER JOIN dbo.Advisors A ON S.Advisor_ID=A.Advisor_ID
4) Full Outer Join SQL Example
select * from dbo.Students S FULL OUTER JOIN dbo.Advisors A ON S.Advisor_ID=A.Advisor_ID
5) SQL example for just getting the rows that don’t join
select * from dbo.Students S FULL OUTER JOIN dbo.Advisors A ON S.Advisor_ID=A.Advisor_ID where A.Advisor_ID is null or S.Student_ID is null
6) SQL example for just rows from one table that don’t join
select * from dbo.Students S FULL OUTER JOIN dbo.Advisors A ON S.Advisor_ID=A.Advisor_ID where A.Advisor_ID is null
But what about the duplicate row thing?
Now, since in this case we had a simple one to one relationship, the number of rows that were returned made the venn diagrams make sense, and add up pretty normally with table one and two.
What happens if the data in the tables are not a simple one to one relationship? What happens if we add one duplicate advisor with the same ID, but a different name?
A join will create a row for every combination of rows that join together. So if there are two advisors with the same key, for every student record that has that key, you will have two rows in the inner part of the join. The advisor duplicate makes duplicate student records for every student with that advisor.
You can see how this could add up to a lot of extra rows. The number of rows is the product of the two sets of joining rows. If the tables get big, just a few duplicates will cause the results of a join to be much larger than the total number of rows in the input tables- this is something you have to watch very carefully when joining- check your row counts.
So there you have it. If you want to try joining tables with the Datamartist tool- give it a try. It’s a super fast install, and you’ll be joining like a pro in no time.
« Estimating the cost of Business Intelligence | Tableau Public- great visualization now where do we get the data? »
HOW CAN WE JOINS TWO TABLES IN DBMS WITHOUT USING RDBMS.?SUB QUERIES AND JOINS AND SET OPERATORS ALL COMES UNDER RDBMS……………………………
excellent!!
nice explanation mention here
Thanks..
Thanks a lot. This will clear all types of join.
Thanks you again for such a nice examples….
Nice example of join query
Informative article. Thanks
very nice example
Thanksss….a lot
Nicely explained with Examples.
This is a much learning lesson with good examples….Thankxxx
Good Example
Awesome topic explination
Very nice. Nicely explained with examples.
golden
excellent!!
Thanks a lot. This will clear all types of join.
Thank you..
Thnk you so much,,,,!
good
Nice queries , all the queries are useful
Expalined with Venn diagram is Gud
Never forget this because of diagrams. What a good way to explain.
nice explanation
Excellent!!
Thanks a lot. This will clear all types of join.
Thank you..
hi,,nice information about joins with examples thanx.
Very nicely explained and simple too. Thanks a lot.
Thank you so much,,,,!
Great explanation!
I’ve been working with SQl queries for >20 years, and this post is a great introduction, nice job.
Very nice way of explaining the consept.,thank you
Thank you for this article , it is very helpful and easy to understand!
Excellent article on joins, really helpful!!
Nice information about Joins with example
outstanding
very clear example given about joins
Wow that really helpful.good job