About 13,800 results
Open links in new tab
  1. Union vs. Join – SQLServerCentral Forums

    Dec 4, 2002 · Joins are to return data from 2 or more related tables e.g. select * from customers c inner join orders o on c.id=o.id Union is to return multiple result sets of the the same structure …

  2. difference betwwn inner join and intersect in sql

    Aug 3, 2008 · I would like to know when to use inner join/outer join and intersect/except as they probably are doing the same job if not mistaken. what is difference while working with joins …

  3. Understanding UNION and UNION ALL in SQL Server

    Sep 20, 2016 · A short look at the differences in UNION and UNION ALL in a SELECT query.

  4. Differences between Merge and Union All transformations in SSIS

    Feb 13, 2009 · What are the differences between Merge and Union All transformations in SSIS ? The first and most obvious difference is that Merge can only accept two datasets while Union …

  5. Convert UNION to a JOIN – SQLServerCentral Forums

    May 22, 2019 · UNION is a combination of rows, provided that order and number of columns are the same and have compatible datatypes. JOIN is more like combination of columns, …

  6. Issue with collation conflict and union join - SQLServerCentral

    Feb 5, 2013 · Home Forums SQL Server 2008 SQL Server 2008 - General Issue with collation conflict and union join Post reply

  7. CASE vs UNION – SQLServerCentral Forums

    Mar 30, 2009 · CASE vs UNION Forum – Learn more on SQLServerCentral

  8. Join vs. Function – SQLServerCentral Forums

    Apr 11, 2011 · But I'm wondering what the impact on performance is if I use a function vs putting the join right in my initial sql code. This is a very simple example, but which would be the …

  9. Recursive CTE vs UNION ALL in a VIEW - SQLServerCentral

    Feb 16, 2020 · Recursive CTE vs UNION ALL in a VIEW Forum – Learn more on SQLServerCentral

  10. UNION ALL with CTE - SQLServerCentral Forums

    Jan 28, 2022 · I am trying to UNION ALL two tables 1) Current receipts 2) Historical receipts. Both of those tables have CTE because it was the only way how could it change numeric field into …