Update with except conditon

  • I want to update a column in a table.

    I am using:-

    update table

    set column name =....

    except (sub query giving other COLUMN VALUES as output)

    I dont want the sub query resulted VALUES in the updated statemnt ,

    How to proceed?

    Regards,

    SKYBVI

    Regards
    Sushant Kumar
    MCTS,MCP

  • SKYBVI (1/4/2012)


    I want to update a column in a table.

    I am using:-

    update table

    set column name =....

    except (sub query giving other COLUMN VALUES as output)

    I dont want the sub query resulted VALUES in the updated statemnt ,

    How to proceed?

    Regards,

    SKYBVI

    Something like this?

    update t1

    set col1 = ???

    from table t1 left join (subquery) t2 on t1.??? = t2.???

    where t2.id is null

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Hi,

    I am not joining any table , its just a subquery..

    Hope my query will clarify you more:--

    update PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    where VND_ID NOT IN (select VND_ID from PLU_1

    Where len(DSPL_DESCR)=40

    AND DSPL_DESCR LIKE '%"%' )

    VND_ID and DSPL_DESCR are columns.

    I want all rows of DSPL_DESCR to be updated EXCEPT

    those which have the above subquery condition.

    Regards,

    Skybvi

    Regards
    Sushant Kumar
    MCTS,MCP

  • where VND_ID NOT IN (select VND_ID from PLU_1

    Where len(DSPL_DESCR)=40

    AND DSPL_DESCR LIKE '%"%' )

    This is functionally equivalent to Phil's LEFT JOIN.

    You could also use NOT EXISTS as a correlated subquery.

    Your problem is unclear - is your statement not working, or is it slow?


    [font="Arial"]Low-hanging fruit picker and defender of the moggies[/font]

    For better assistance in answering your questions, please read this[/url].


    Understanding and using APPLY, (I)[/url] and (II)[/url] Paul White[/url]

    Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]

  • I must also be missing something. What's wrong with the solution you already posted?

    - Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
    Property of The Thread

    "Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon

  • ChrisM@home (1/4/2012)


    where VND_ID NOT IN (select VND_ID from PLU_1

    Where len(DSPL_DESCR)=40

    AND DSPL_DESCR LIKE '%"%' )

    This is functionally equivalent to Phil's LEFT JOIN.

    You could also use NOT EXISTS as a correlated subquery.

    Your problem is unclear - is your statement not working, or is it slow?

    I getting this error

    Msg 8152, Level 16, State 14, Line 1

    String or binary data would be truncated.

    The statement has been terminated.

    Regards.

    Skybvi

    Regards
    Sushant Kumar
    MCTS,MCP

  • Probably something in the UPDATE part of your statement. How about posting the whole statement?


    [font="Arial"]Low-hanging fruit picker and defender of the moggies[/font]

    For better assistance in answering your questions, please read this[/url].


    Understanding and using APPLY, (I)[/url] and (II)[/url] Paul White[/url]

    Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]

  • The problem is that your REPLACE function is increasing the length of the string beyond the maximum allowed and you haven't correctly accounted for that fact. Given your subquery, I assume that the max length of that field is 40. The subquery will only account for fields that have one instance of the replaced string. Try the following instead.

    update PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    where VND_ID NOT IN (select VND_ID from PLU_1

    Where len(replace ([DSPL_DESCR],'"','in'))>=40

    AND DSPL_DESCR LIKE '%"%' )

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • Actually, why are you using a subquery in the first place. Doesn't the following give you what you want?

    UPDATE PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    WHERE AND DSPL_DESCR LIKE '%"%'

    AND len(replace ([DSPL_DESCR],'"','in'))<40

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • drew.allen (1/4/2012)


    The problem is that your REPLACE function is increasing the length of the string beyond the maximum allowed and you haven't correctly accounted for that fact. Given your subquery, I assume that the max length of that field is 40. The subquery will only account for fields that have one instance of the replaced string. Try the following instead.

    update PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    where VND_ID NOT IN (select VND_ID from PLU_1

    Where len(replace ([DSPL_DESCR],'"','in'))>=40

    AND DSPL_DESCR LIKE '%"%' )

    Drew

    That looks perfect , only change i would do in your syntax is <=40

    Regards,

    Skybvi

    Regards
    Sushant Kumar
    MCTS,MCP

  • drew.allen (1/4/2012)


    Actually, why are you using a subquery in the first place. Doesn't the following give you what you want?

    UPDATE PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    WHERE AND DSPL_DESCR LIKE '%"%'

    AND len(replace ([DSPL_DESCR],'"','in'))<40

    Drew

    Yup,

    This fetches correct

    Update PLU_1

    SET DSPL_DESCR = REPLACE(PLU_1.[DSPL_DESCR], '"', 'in')

    WHERE LEN(REPLACE(PLU_1.[DSPL_DESCR], '"', 'in') ) <= 40

    AND PLU_1.DSPL_DESCR LIKE '%"%'

    Regards,

    Skybvi

    Regards
    Sushant Kumar
    MCTS,MCP

  • Using <= in that one will be the opposite of what you want. Use Drew's last example. No reason to overcomplicate this.

    - Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
    Property of The Thread

    "Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon

  • drew.allen (1/4/2012)


    Actually, why are you using a subquery in the first place. Doesn't the following give you what you want?

    UPDATE PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    WHERE AND DSPL_DESCR LIKE '%"%'

    AND len(replace ([DSPL_DESCR],'"','in'))<40

    Drew

    drew.allen (1/4/2012)


    The problem is that your REPLACE function is increasing the length of the string beyond the maximum allowed and you haven't correctly accounted for that fact. Given your subquery, I assume that the max length of that field is 40. The subquery will only account for fields that have one instance of the replaced string. Try the following instead.

    update PLU_1

    SET DSPL_DESCR = replace ([DSPL_DESCR],'"','in')

    where VND_ID NOT IN (select VND_ID from PLU_1

    Where len(replace ([DSPL_DESCR],'"','in'))>=40

    AND DSPL_DESCR LIKE '%"%' )

    Drew

    Drew - say there are ten rows with the same VND_ID and only one of them matches the filter?


    [font="Arial"]Low-hanging fruit picker and defender of the moggies[/font]

    For better assistance in answering your questions, please read this[/url].


    Understanding and using APPLY, (I)[/url] and (II)[/url] Paul White[/url]

    Hidden RBAR: Triangular Joins[/url] / The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url] Jeff Moden[/url]

  • ChrisM@home (1/4/2012)


    say there are ten rows with the same VND_ID and only one of them matches the filter?

    You'll need to post sample data illustrating the problem and the desired results.

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • Thanks everyone.

    Regards,

    Skybvi

    Regards
    Sushant Kumar
    MCTS,MCP

Viewing 15 posts - 1 through 15 (of 20 total)

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