DELETE and LEFT JOIN

  • I'm using SQL Server Express 2008 R2. I've been looking through BOL but cannot find an example or explanation.

    Why does this work:

    SELECT * FROM CurIndividual

    LEFT JOIN CurAccounts ON CurIndividual.MemberID = CurAccounts.MemberID

    WHERE CurAccounts.MemberID IS NULL

    -returns 33 rows. Same number I get in Access.

    but not this?

    DELETE FROM CurIndividual

    LEFT JOIN CurAccounts ON CurIndividual.MemberID = CurAccounts.MemberID

    WHERE CurAccounts.MemberID IS NULL

    I get "syntax error near 'LEFT'."

    I'm trying to get rid of 33 orphaned records in the CurIndividual table. CurAccounts is the parent table. LEFT OUTER JOIN returns no rows. So obviously neither syntax is valid. Any ideas?

    Thanks.

    -Michael

  • Try this:

    DECLARE @Parent TABLE

    (

    ParentID INT

    )

    DECLARE @Child TABLE

    (

    ChildID INT,

    ParentID INT

    )

    -- Inserting Sample Data

    INSERT INTO @Parent

    SELECT SPT.number AS ParentID

    FROM master.dbo.spt_values SPT

    WHERE SPT.number BETWEEN 1 AND 8

    AND SPT.type = 'P'

    INSERT INTO @Child

    SELECT DISTINCT SPT.number AS ChildID ,

    SPT.number AS ParentID

    FROM master.dbo.spt_values SPT

    WHERE SPT.number BETWEEN 1 AND 20

    AND SPT.type = 'P'

    -- SELECT THE VALUES

    SELECT C.ChildID

    FROM @Child C

    LEFT JOIN @Parent P

    ON P.ParentID = C.ParentID

    WHERE P.ParentID IS NULL

    -- This will be your syntax to delete orphan rows

    -- orphan - rows that dont have a matching parent

    DELETE C

    FROM @Child C

    LEFT JOIN @Parent P

    ON P.ParentID = C.ParentID

    WHERE P.ParentID IS NULL

    SELECT * FROM @Child

    You can perform DELETEs using JOINs.. it was a syntax error in your code 🙂

    HTH 😉

  • DELETE CurIndividual FROM CurIndividual

    LEFT JOIN CurAccounts ON CurIndividual.MemberID = CurAccounts.MemberID

    WHERE CurAccounts.MemberID IS NULL

    Can u try this....

  • sqlzealot-81,

    Thank you. That worked perfectly. 33 rows deleted, as expected.

  • The issue is that the DELETE statement supports two FROM clauses. To make it even better, the first FROM keyword is optional. It is with the second FROM clause where you can join to other tables.

    Wayne
    Microsoft Certified Master: SQL Server 2008
    Author - SQL Server T-SQL Recipes


    If you can't explain to another person how the code that you're copying from the internet works, then DON'T USE IT on a production system! After all, you will be the one supporting it!
    Links:
    For better assistance in answering your questions
    Performance Problems
    Common date/time routines
    Understanding and Using APPLY Part 1 & Part 2

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply