zoukankan      html  css  js  c++  java
  • SQL UNION

    QL UNION is query that allows you to select related information from 2 tables, this is combine 2 SELECT statement into 1 and display it out.

    UNION will only return DISTINCT value only. Which means will eliminate duplicate records that returned.

    There are some condition that need to meet when using the UNION statement.
    First SELECT statement must have the same column number if compare with 2nd SELECTStatement.
    Data type also has to be same for both columns to combine.

    The syntax is as follows:

    SELECT [COLUMN NAME 1], [COLUMN NAME 2],… FROM [TABLE NAME 1]
    UNION
    SELECT [COLUMN NAME 1], [COLUMN NAME 2],… FROM [TABLE NAME 2]


    EXAMPLE :

    We have 2 table name GamesScores, GameScores_new.

    Table GameScores

    PlayerName Department Scores
    Jason IT 3000
    Irene IT 1500
    Jane Marketing 1000
    David Marketing 2500
    Paul HR 2000
    James HR 2000

    Table GameScores_new

    PlayerName Department Scores
    Jason IT 3000
    David Marketing 2500
    Paul HR 2000
    James HR 2000

    SQL statement :

    SELECT PlayerName FROM GameScores
    UNION
    SELECT PlayerName FROM GameScores_new

    Result:

    PlayerName
    David
    Irene
    James
    Jane
    Jason
    Paul
  • 相关阅读:
    C#开发规范
    Win32API使用技巧 -- 置顶应用
    Windows开发常用快捷键
    MarkDown简单语法回顾
    样本分布
    复变函数
    set theory
    Oscar的数理统计笔记本
    Oscar的拓扑笔记本
    c语言总结
  • 原文地址:https://www.cnblogs.com/zhoug2020/p/3327820.html
Copyright © 2011-2022 走看看