• j-1064772 (1/13/2014)


    [font="Comic Sans MS"]These two T-SQL statements return the same results.

    If Microsoft deemed it necessary to add the EXCEPT command, then what are its advantages over an INNER JOIN [/font]

    -- LIST ONLY PRODUCTS THAT ARE ON A WORK ORDER

    [font="Courier New"]USE AdventureWorks2008R2;

    GO

    SELECT ProductID

    FROM Production.Product

    INTERSECT

    SELECT ProductID

    FROM Production.WorkOrder ;

    USE AdventureWorks2008R2;

    GO

    SELECT DISTINCT Production.WorkOrder.ProductID

    FROM Production.Product

    INNER JOIN Production.WorkOrder ON Production.WorkOrder.ProductID = Production.Product.ProductID[/font]

    INTERSECT and INNER JOIN are similar but NOT the same. In your actual question you said EXCEPT instead of INTERSECT which is what I assume you meant.

    Here is a decent explanation.

    http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/[/url]

    _______________________________________________________________

    Need help? Help us help you.

    Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.

    Need to split a string? Try Jeff Modens splitter http://www.sqlservercentral.com/articles/Tally+Table/72993/.

    Cross Tabs and Pivots, Part 1 – Converting Rows to Columns - http://www.sqlservercentral.com/articles/T-SQL/63681/
    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs - http://www.sqlservercentral.com/articles/Crosstab/65048/
    Understanding and Using APPLY (Part 1) - http://www.sqlservercentral.com/articles/APPLY/69953/
    Understanding and Using APPLY (Part 2) - http://www.sqlservercentral.com/articles/APPLY/69954/