WISDOMBYDATA
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me

UNION Compatibility

4/29/2014

0 Comments

 
A union statement takes two or more SELECT statements, combines them, and returns an output. In order to be UNION compatible the following conditions must be met in the tables within SQL Server Management Studio.

1. Tables must have the same number of columns
2. Columns must be of the same data type
3. Columns order must be similar within the SELECT statement


I will hereby explain these criterion using an example with data from the AdventureWorks database.

1. Tables must have the same number of columns
To further explain, I will attempt performing a UNION on two tables which do not have the same number of columns.Here is the error that I arrived at. 
Picture
Now, I will select only one columns from each of these two tables and then perform the UNION. The output of this UNION is illustrated below. As you could see the UNION command has been successfully executed.
Picture
2. Columns must be the same data type
In the previous SELECT statement both Columns in the UNION statement (i.e. Name and DocName) were of the same data type (i.e. Varchar). If otherwise, an error similar to the one in the illustration below will be returned.
Picture
3. Columns order must be similar
This order is with respect to the data type. For example, say our first select contains two columns and the data types respectively are: Int and Varchar. In this case, the order of the columns in the second SELECT must also be Int followed by Varchar, otherwise an error will be returned. The screen shot below demonstrates this error.
Picture
Only after placing columns in the same order (with respect to data type) in both SELECT statements will the UNION command return the desired aggregated outcome. See the screenshot below for a detailed. demonstration.
Picture
0 Comments



Leave a Reply.

    Categories

    All
    BI
    EXCEL
    MISC
    SQL

    Archives

    June 2020
    May 2020
    April 2020
    March 2020
    February 2020
    December 2019
    November 2019
    October 2019
    September 2019
    August 2019
    July 2019
    June 2019
    May 2019
    April 2019
    March 2019
    February 2019
    January 2019
    December 2018
    November 2018
    October 2018
    September 2018
    August 2018
    July 2018
    June 2018
    May 2018
    April 2018
    March 2018
    September 2017
    August 2017
    July 2017
    June 2017
    May 2017
    April 2017
    March 2017
    February 2017
    January 2017
    December 2016
    November 2016
    October 2016
    September 2016
    August 2016
    July 2016
    June 2016
    May 2016
    April 2016
    March 2016
    February 2016
    May 2015
    April 2015
    March 2015
    February 2015
    January 2015
    December 2014
    November 2014
    October 2014
    September 2014
    August 2014
    April 2014
    March 2014
    February 2014
    January 2014
    December 2013
    November 2013

Picture
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me