Visual Explanation illustration and presentation of SQL JOINS query statements

SQL Joins can sometimes be a bit confusing, particularly if you a newbie.

I have below 2 visual representations which should help enhance your visual understanding of SQL JOINS

  1. First is from From CodeProject, by C L Moffatt

visual representation of SQL joins

You can check full explanation here: Sql Joins visually explained

 

2. Second was from Duke University.

Join_diagram

This was part of Managing Big Data with MySQL course on Coursera.org

Happy joining!

Want more information like this?

Similar Posts

  • |

    Creating Oracle PL/SQL Tables for Intercollegiate Athletic Database – Data Warehousing

    Creating Oracle  tables for Intercollegiate Athletic Database. Part of Assignment one of Data Warehousing for Business Intelligence on Coursera

    After creating the tables lets insert values

      In case you want to change a constraint on a field, you can use a syntax examples as the following. ALTER TABLE FACILITY ADD CONSTRAINT UNQ_FAC UNIQUE (FACNAME)…

  • |

    Drop Shipping Ecommerce Database ER Diagram and Conceptual Modeling

    In this short article, we look at a sample ERD Diagram which is designed using ER-Assistant software (usage of this software is covered here: How To Use ER Assistant) after we have finished with the Conceptual Modeling. Hence in the first place, we have to gather some Data requirements. This involves business logic and requirements,…

  • |

    MySQL – Summarizing Data – SUM COUNT -MIN -MAX – AVG – DOGNITION Database

    Summarizing  Data This week we are looking at five most common aggregate functions used to summarize information stored in tables: COUNT and SUM very frequently. COUNT is the only aggregate function that can work on any type of variable. The other four aggregate functions are only appropriate for numerical data. All aggregate functions require you…

  • | | | |

    Free Entity Relationship and Relational Schema Diagram Tool

    ERDPLUS One tool I generally use when working on a projects, mini tasks and exploration is the ERDPLUS tool . It is quite simple and easy to use. It is a Free tool as well. Below are some diagrams I generated when i first got in contact with with tool. ERD DIAGRAMS: 1. 2.  A…

  • |

    Pyodbc Sqlalchemy Python 2 and 3 SQL Server Native Client 11.0

    This is a sample code to use Python to connect to SQL Server Native Client.

    Want more information like this?

Leave a Reply

Your email address will not be published. Required fields are marked *