Update if not exists statement












0















If I have a simple table with 2 columns and a composite primary key consisting of both columns, how do I rename one of the columns but only if it doesn't cause a primary conflict?



Here's a simplified example.



Take the following table:



User  | Role
------|----------------
Joe | User
Joe | Administrator
Brian | User
Anna | Administrator
Anna | Admin


Suppose I want to write the following query:



UPDATE UserRoles Set Role = 'Admin' WHERE Role = 'Administrator'


Without using cursors, how do I change my SQL Update statement to avoid renaming Anna (because that user already has the Admin role), but still rename Joe?



Is that even possible using set based SQL or is using a cursor the only way?



Thanks.










share|improve this question



























    0















    If I have a simple table with 2 columns and a composite primary key consisting of both columns, how do I rename one of the columns but only if it doesn't cause a primary conflict?



    Here's a simplified example.



    Take the following table:



    User  | Role
    ------|----------------
    Joe | User
    Joe | Administrator
    Brian | User
    Anna | Administrator
    Anna | Admin


    Suppose I want to write the following query:



    UPDATE UserRoles Set Role = 'Admin' WHERE Role = 'Administrator'


    Without using cursors, how do I change my SQL Update statement to avoid renaming Anna (because that user already has the Admin role), but still rename Joe?



    Is that even possible using set based SQL or is using a cursor the only way?



    Thanks.










    share|improve this question

























      0












      0








      0


      1






      If I have a simple table with 2 columns and a composite primary key consisting of both columns, how do I rename one of the columns but only if it doesn't cause a primary conflict?



      Here's a simplified example.



      Take the following table:



      User  | Role
      ------|----------------
      Joe | User
      Joe | Administrator
      Brian | User
      Anna | Administrator
      Anna | Admin


      Suppose I want to write the following query:



      UPDATE UserRoles Set Role = 'Admin' WHERE Role = 'Administrator'


      Without using cursors, how do I change my SQL Update statement to avoid renaming Anna (because that user already has the Admin role), but still rename Joe?



      Is that even possible using set based SQL or is using a cursor the only way?



      Thanks.










      share|improve this question














      If I have a simple table with 2 columns and a composite primary key consisting of both columns, how do I rename one of the columns but only if it doesn't cause a primary conflict?



      Here's a simplified example.



      Take the following table:



      User  | Role
      ------|----------------
      Joe | User
      Joe | Administrator
      Brian | User
      Anna | Administrator
      Anna | Admin


      Suppose I want to write the following query:



      UPDATE UserRoles Set Role = 'Admin' WHERE Role = 'Administrator'


      Without using cursors, how do I change my SQL Update statement to avoid renaming Anna (because that user already has the Admin role), but still rename Joe?



      Is that even possible using set based SQL or is using a cursor the only way?



      Thanks.







      sql-server t-sql sql-server-2014 update






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 10 '15 at 23:20









      Lambo JayapalanLambo Jayapalan

      102127




      102127






















          1 Answer
          1






          active

          oldest

          votes


















          5














          One way is



          UPDATE a
          SET [Role]= 'Admin'
          FROM UserRoles a
          WHERE a.[Role]= 'Administrator'
          AND NOT EXISTS
          (
          SELECT NULL
          FROM dbo.UserRoles b
          WHERE b.[User] = a.[User] AND b.[Role] = 'Admin'
          );





          share|improve this answer

























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "182"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f123420%2fupdate-if-not-exists-statement%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            5














            One way is



            UPDATE a
            SET [Role]= 'Admin'
            FROM UserRoles a
            WHERE a.[Role]= 'Administrator'
            AND NOT EXISTS
            (
            SELECT NULL
            FROM dbo.UserRoles b
            WHERE b.[User] = a.[User] AND b.[Role] = 'Admin'
            );





            share|improve this answer






























              5














              One way is



              UPDATE a
              SET [Role]= 'Admin'
              FROM UserRoles a
              WHERE a.[Role]= 'Administrator'
              AND NOT EXISTS
              (
              SELECT NULL
              FROM dbo.UserRoles b
              WHERE b.[User] = a.[User] AND b.[Role] = 'Admin'
              );





              share|improve this answer




























                5












                5








                5







                One way is



                UPDATE a
                SET [Role]= 'Admin'
                FROM UserRoles a
                WHERE a.[Role]= 'Administrator'
                AND NOT EXISTS
                (
                SELECT NULL
                FROM dbo.UserRoles b
                WHERE b.[User] = a.[User] AND b.[Role] = 'Admin'
                );





                share|improve this answer















                One way is



                UPDATE a
                SET [Role]= 'Admin'
                FROM UserRoles a
                WHERE a.[Role]= 'Administrator'
                AND NOT EXISTS
                (
                SELECT NULL
                FROM dbo.UserRoles b
                WHERE b.[User] = a.[User] AND b.[Role] = 'Admin'
                );






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 12 mins ago









                Paul White

                52.1k14278450




                52.1k14278450










                answered Dec 10 '15 at 23:32









                a1ex07a1ex07

                7,32621632




                7,32621632






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Database Administrators Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f123420%2fupdate-if-not-exists-statement%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Liste der Baudenkmale in Friedland (Mecklenburg)

                    Single-Malt-Whisky

                    Czorneboh