SQL Server Update Case When Then statment










0















I need to update a column [Recipient on contract] in the table [Check_Result]. But the value to insert into the column is not a fixed string but a value from [All_Contracts] table. Thus, all rows to inset into [Recipient on contract] are unique and can be found with the keys [ID Contract] = [Référence]



The link between tables [Check_Result] and [All_Contracts] is [ID Contract] = [Référence]



Update [Check_Result] 
set [Recipient on contract] =
If [Bénéficiaire] ="Personne morale" Then
If [Organisme] is not null Then get [Organisme]
Else get [Professionnel de santé]
Else
If [Professionnel de santé] is not null Then get [Professionnel de santé]
Else get [Organisme]


Is It possible to use THEN in such situation? with a Update Case when then (select from inner join where) statement?



Thank you










share|improve this question


























    0















    I need to update a column [Recipient on contract] in the table [Check_Result]. But the value to insert into the column is not a fixed string but a value from [All_Contracts] table. Thus, all rows to inset into [Recipient on contract] are unique and can be found with the keys [ID Contract] = [Référence]



    The link between tables [Check_Result] and [All_Contracts] is [ID Contract] = [Référence]



    Update [Check_Result] 
    set [Recipient on contract] =
    If [Bénéficiaire] ="Personne morale" Then
    If [Organisme] is not null Then get [Organisme]
    Else get [Professionnel de santé]
    Else
    If [Professionnel de santé] is not null Then get [Professionnel de santé]
    Else get [Organisme]


    Is It possible to use THEN in such situation? with a Update Case when then (select from inner join where) statement?



    Thank you










    share|improve this question
























      0












      0








      0








      I need to update a column [Recipient on contract] in the table [Check_Result]. But the value to insert into the column is not a fixed string but a value from [All_Contracts] table. Thus, all rows to inset into [Recipient on contract] are unique and can be found with the keys [ID Contract] = [Référence]



      The link between tables [Check_Result] and [All_Contracts] is [ID Contract] = [Référence]



      Update [Check_Result] 
      set [Recipient on contract] =
      If [Bénéficiaire] ="Personne morale" Then
      If [Organisme] is not null Then get [Organisme]
      Else get [Professionnel de santé]
      Else
      If [Professionnel de santé] is not null Then get [Professionnel de santé]
      Else get [Organisme]


      Is It possible to use THEN in such situation? with a Update Case when then (select from inner join where) statement?



      Thank you










      share|improve this question














      I need to update a column [Recipient on contract] in the table [Check_Result]. But the value to insert into the column is not a fixed string but a value from [All_Contracts] table. Thus, all rows to inset into [Recipient on contract] are unique and can be found with the keys [ID Contract] = [Référence]



      The link between tables [Check_Result] and [All_Contracts] is [ID Contract] = [Référence]



      Update [Check_Result] 
      set [Recipient on contract] =
      If [Bénéficiaire] ="Personne morale" Then
      If [Organisme] is not null Then get [Organisme]
      Else get [Professionnel de santé]
      Else
      If [Professionnel de santé] is not null Then get [Professionnel de santé]
      Else get [Organisme]


      Is It possible to use THEN in such situation? with a Update Case when then (select from inner join where) statement?



      Thank you







      sql-server-2008 dynamic-sql






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 '18 at 10:09









      Boels MaxenceBoels Maxence

      85




      85






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Yes, each of the values in CASE statement can be replaced with nested select statement surrounded with '(' and ')', i.e. this is a valid statement:



          update table1 set
          field1 = CASE WHEN field2 = 'some value'
          THEN (select field1 from table2 where table1.key_field = table2.key_field)
          ELSE 'some default value'
          END


          You can do the same with IIF statement too



          update table1 set
          field1 = IIF(field2 = 'some value',
          (select field1 from table2 where table1.key_field = table2.key_field),
          'some default value')


          Your update statement isn't quite clear. Which value you want to get from [All_Contracts] table? It can simplified like this:



          Update [Check_Result] set
          [Recipient on contract] = IIF([Bénéficiaire] = "Personne morale",
          COALESCE([Organisme], [Professionnel de santé]),
          COALESCE([Professionnel de santé], [Organisme]))


          There you can replace [Professionnel de santé] or [Organisme] with (select SomeField from [All_Contracts] where [All_Contracts].[ID Contract] = [Check_Result].[Référence]).






          share|improve this answer






















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            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: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fstackoverflow.com%2fquestions%2f53278558%2fsql-server-update-case-when-then-statment%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









            0














            Yes, each of the values in CASE statement can be replaced with nested select statement surrounded with '(' and ')', i.e. this is a valid statement:



            update table1 set
            field1 = CASE WHEN field2 = 'some value'
            THEN (select field1 from table2 where table1.key_field = table2.key_field)
            ELSE 'some default value'
            END


            You can do the same with IIF statement too



            update table1 set
            field1 = IIF(field2 = 'some value',
            (select field1 from table2 where table1.key_field = table2.key_field),
            'some default value')


            Your update statement isn't quite clear. Which value you want to get from [All_Contracts] table? It can simplified like this:



            Update [Check_Result] set
            [Recipient on contract] = IIF([Bénéficiaire] = "Personne morale",
            COALESCE([Organisme], [Professionnel de santé]),
            COALESCE([Professionnel de santé], [Organisme]))


            There you can replace [Professionnel de santé] or [Organisme] with (select SomeField from [All_Contracts] where [All_Contracts].[ID Contract] = [Check_Result].[Référence]).






            share|improve this answer



























              0














              Yes, each of the values in CASE statement can be replaced with nested select statement surrounded with '(' and ')', i.e. this is a valid statement:



              update table1 set
              field1 = CASE WHEN field2 = 'some value'
              THEN (select field1 from table2 where table1.key_field = table2.key_field)
              ELSE 'some default value'
              END


              You can do the same with IIF statement too



              update table1 set
              field1 = IIF(field2 = 'some value',
              (select field1 from table2 where table1.key_field = table2.key_field),
              'some default value')


              Your update statement isn't quite clear. Which value you want to get from [All_Contracts] table? It can simplified like this:



              Update [Check_Result] set
              [Recipient on contract] = IIF([Bénéficiaire] = "Personne morale",
              COALESCE([Organisme], [Professionnel de santé]),
              COALESCE([Professionnel de santé], [Organisme]))


              There you can replace [Professionnel de santé] or [Organisme] with (select SomeField from [All_Contracts] where [All_Contracts].[ID Contract] = [Check_Result].[Référence]).






              share|improve this answer

























                0












                0








                0







                Yes, each of the values in CASE statement can be replaced with nested select statement surrounded with '(' and ')', i.e. this is a valid statement:



                update table1 set
                field1 = CASE WHEN field2 = 'some value'
                THEN (select field1 from table2 where table1.key_field = table2.key_field)
                ELSE 'some default value'
                END


                You can do the same with IIF statement too



                update table1 set
                field1 = IIF(field2 = 'some value',
                (select field1 from table2 where table1.key_field = table2.key_field),
                'some default value')


                Your update statement isn't quite clear. Which value you want to get from [All_Contracts] table? It can simplified like this:



                Update [Check_Result] set
                [Recipient on contract] = IIF([Bénéficiaire] = "Personne morale",
                COALESCE([Organisme], [Professionnel de santé]),
                COALESCE([Professionnel de santé], [Organisme]))


                There you can replace [Professionnel de santé] or [Organisme] with (select SomeField from [All_Contracts] where [All_Contracts].[ID Contract] = [Check_Result].[Référence]).






                share|improve this answer













                Yes, each of the values in CASE statement can be replaced with nested select statement surrounded with '(' and ')', i.e. this is a valid statement:



                update table1 set
                field1 = CASE WHEN field2 = 'some value'
                THEN (select field1 from table2 where table1.key_field = table2.key_field)
                ELSE 'some default value'
                END


                You can do the same with IIF statement too



                update table1 set
                field1 = IIF(field2 = 'some value',
                (select field1 from table2 where table1.key_field = table2.key_field),
                'some default value')


                Your update statement isn't quite clear. Which value you want to get from [All_Contracts] table? It can simplified like this:



                Update [Check_Result] set
                [Recipient on contract] = IIF([Bénéficiaire] = "Personne morale",
                COALESCE([Organisme], [Professionnel de santé]),
                COALESCE([Professionnel de santé], [Organisme]))


                There you can replace [Professionnel de santé] or [Organisme] with (select SomeField from [All_Contracts] where [All_Contracts].[ID Contract] = [Check_Result].[Référence]).







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 13 '18 at 10:54









                Andrey NikolovAndrey Nikolov

                3,6431621




                3,6431621



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • 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%2fstackoverflow.com%2fquestions%2f53278558%2fsql-server-update-case-when-then-statment%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







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3