zoukankan      html  css  js  c++  java
  • SQL INNER JOIN

    A INNER JOIN command is queries that combine data from more than 1 table.
    For two tables that want to join together need to have some data in common, like unique id that link this 2 tables together.

    INNER JOIN will need a joining condition or connecting column to display out the joined data. 1 joining condition needs when we want to join 2 tables. If more than 2 tables want to join together, more joining condition or connecting column needed.

    A connecting column should have values that match easily for both tables. Connecting columns almost always have the same datatype. The value in the connecting columns are join compatible or can say that the value are come from the same general class of data.

    SQL INNER JOIN syntax:

    SELECT *FROM [TABLE 1] INNER JOIN [TABLE 2]
    ON [TABLE 1].[COLUMN NAME 1] = [TABLE 2].[COLUMN NAME 2]


    EXAMPLE :

    Let’s say, we only want to join 2 tables below and display only PlayerName and DepartmentName

    Table 1: GameScores

    PlayerName DepartmentId Scores
    Jason 1 3000
    Irene 1 1500
    Jane 2 1000
    David 2 2500
    Paul 3 2000
    James 3 2000

    Table 2: Departments

    DepartmentId DepartmentName
    1 IT
    2 Marketing
    3 HR

    The joining Condition will be DepartmentId of both tables.
    SQL statement :

    SELECT PlayerName, DepartmentName
    FROM GameScores2 INNER JOIN Departments
    ON GameScores2.DepartmentId = Departments.DepartmentId

    Result:

    PlayerName DepartmentName
    Jason IT
    Irene IT
    Jane Marketing
    David Marketing
    Paul HR
    James HR
  • 相关阅读:
    请设计一个一百亿的计算器
    ==和equals方法的区别是什么?hashCode方法的作用?
    接口和抽象类相关面试题
    java基础面试题
    有关"内部类"的三道面试题
    软件编程21法则
    内部类的作用
    面向对象的相关面试题
    String类型的面试题
    面朝大海,春暧花开
  • 原文地址:https://www.cnblogs.com/zhoug2020/p/3327817.html
Copyright © 2011-2022 走看看