Mysql query, multiple where conditions, which field matches?












0















given a mysql query in the form like this:



SELECT *
FROM table
WHERE field1 LIKE '%foo%'
OR field2 LIKE '%bar%'
OR field3 LIKE '%foobar%'


Which is the best way to tag the "matching fields" ?



For example:



+----+--------+--------+----------+
| ID | field1 | field2 | field3 |
+----+--------+--------+----------+
| 01 | foo | xxx | xxx |
+----+--------+--------+----------+
| 02 | xxx |12bar21 |xxfoobarxx|
+----+--------+--------+----------+
| 03 | f2o | bar | yxz |
+----+--------+--------+----------+


Here every record would be matched - now I want to know which field for each record matches. (So for ID 01 it is field1, for ID 02 it is field2, field3 and for ID 03 it is field2)



Thank you










share|improve this question





























    0















    given a mysql query in the form like this:



    SELECT *
    FROM table
    WHERE field1 LIKE '%foo%'
    OR field2 LIKE '%bar%'
    OR field3 LIKE '%foobar%'


    Which is the best way to tag the "matching fields" ?



    For example:



    +----+--------+--------+----------+
    | ID | field1 | field2 | field3 |
    +----+--------+--------+----------+
    | 01 | foo | xxx | xxx |
    +----+--------+--------+----------+
    | 02 | xxx |12bar21 |xxfoobarxx|
    +----+--------+--------+----------+
    | 03 | f2o | bar | yxz |
    +----+--------+--------+----------+


    Here every record would be matched - now I want to know which field for each record matches. (So for ID 01 it is field1, for ID 02 it is field2, field3 and for ID 03 it is field2)



    Thank you










    share|improve this question



























      0












      0








      0








      given a mysql query in the form like this:



      SELECT *
      FROM table
      WHERE field1 LIKE '%foo%'
      OR field2 LIKE '%bar%'
      OR field3 LIKE '%foobar%'


      Which is the best way to tag the "matching fields" ?



      For example:



      +----+--------+--------+----------+
      | ID | field1 | field2 | field3 |
      +----+--------+--------+----------+
      | 01 | foo | xxx | xxx |
      +----+--------+--------+----------+
      | 02 | xxx |12bar21 |xxfoobarxx|
      +----+--------+--------+----------+
      | 03 | f2o | bar | yxz |
      +----+--------+--------+----------+


      Here every record would be matched - now I want to know which field for each record matches. (So for ID 01 it is field1, for ID 02 it is field2, field3 and for ID 03 it is field2)



      Thank you










      share|improve this question
















      given a mysql query in the form like this:



      SELECT *
      FROM table
      WHERE field1 LIKE '%foo%'
      OR field2 LIKE '%bar%'
      OR field3 LIKE '%foobar%'


      Which is the best way to tag the "matching fields" ?



      For example:



      +----+--------+--------+----------+
      | ID | field1 | field2 | field3 |
      +----+--------+--------+----------+
      | 01 | foo | xxx | xxx |
      +----+--------+--------+----------+
      | 02 | xxx |12bar21 |xxfoobarxx|
      +----+--------+--------+----------+
      | 03 | f2o | bar | yxz |
      +----+--------+--------+----------+


      Here every record would be matched - now I want to know which field for each record matches. (So for ID 01 it is field1, for ID 02 it is field2, field3 and for ID 03 it is field2)



      Thank you







      mysql sql






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 '18 at 4:57









      billynoah

      10.8k64364




      10.8k64364










      asked Nov 20 '18 at 4:43









      Simon AschemeierSimon Aschemeier

      185




      185
























          3 Answers
          3






          active

          oldest

          votes


















          1














          You can add flags using conditionals to your select like:



          SELECT *,
          IF(field1 LIKE '%foo%', 1, 0) AS field1_matches,
          IF(field2 LIKE '%bar%', 1, 0) AS field2_matches,
          IF(field3 LIKE '%foobar%', 1, 0) AS field3_matches
          FROM TABLE
          WHERE field1 LIKE '%foo%'
          OR field2 LIKE '%bar%'
          OR field3 LIKE '%foobar%'


          If you need the results in a single field as a comma separated list you can concatenate the results using CONCAT_WS and return NULL inside your conditional when there's no match:



          SELECT *,
          CONCAT_WS(',',
          IF(field1 LIKE '%foo%', 'field1', NULL),
          IF(field2 LIKE '%bar%', 'field2', NULL),
          IF(field3 LIKE '%foobar%', 'field3', NULL)
          ) AS matches
          FROM TABLE
          WHERE field1 LIKE '%foo%'
          OR field2 LIKE '%bar%'
          OR field3 LIKE '%foobar%'





          share|improve this answer


























          • Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

            – Simon Aschemeier
            Nov 27 '18 at 7:09



















          0














          How about a CASE expression:



          SELECT
          CASE WHEN field1 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
          THEN 'field1' ELSE '' END AS field1match,
          CASE WHEN field2 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
          THEN 'field2' ELSE '' END AS field2match,
          CASE WHEN field3 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
          THEN 'field3' ELSE '' END AS field3match
          FROM yourTable



          Demo



          If you just want to match substrings, then use this:



          SELECT
          CASE WHEN field1 REGEXP 'foo|bar|foobar'
          THEN 'field1' ELSE '' END AS field1match,
          CASE WHEN field2 REGEXP 'foo|bar|foobar'
          THEN 'field2' ELSE '' END AS field2match,
          CASE WHEN field3 REGEXP 'foo|bar|foobar'
          THEN 'field3' ELSE '' END AS field3match
          FROM yourTable





          share|improve this answer

































            0














            Using CONCAT and CASE



            You are exactly looking for the below result but I know you wish to separate fields with comma or any other sign, for this I can't access mysql now so I think you can manage that by yourself



            SELECT *,
            CONCAT(CASE WHEN field1 LIKE '%foo%' THEN 'field1' ELSE NULL END,
            CASE WHEN field2 LIKE '%bar%' THEN 'field2' ELSE NULL END,
            CASE WHEN field3 LIKE '%foobar%' THEN 'field3' ELSE NULL END) AS macthed_column
            FROM youtable
            WHERE field1 LIKE '%foo%'
            OR field2 LIKE '%bar%'
            OR field3 LIKE '%foobar%'


            OUTPUT:



            ID  field1  field2  field3      macthed_column
            1 foo xxx xxx field1
            2 xxx 12bar21 xxfoobarxx field2field3
            3 f2o bar yxz field2





            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%2f53386368%2fmysql-query-multiple-where-conditions-which-field-matches%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1














              You can add flags using conditionals to your select like:



              SELECT *,
              IF(field1 LIKE '%foo%', 1, 0) AS field1_matches,
              IF(field2 LIKE '%bar%', 1, 0) AS field2_matches,
              IF(field3 LIKE '%foobar%', 1, 0) AS field3_matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'


              If you need the results in a single field as a comma separated list you can concatenate the results using CONCAT_WS and return NULL inside your conditional when there's no match:



              SELECT *,
              CONCAT_WS(',',
              IF(field1 LIKE '%foo%', 'field1', NULL),
              IF(field2 LIKE '%bar%', 'field2', NULL),
              IF(field3 LIKE '%foobar%', 'field3', NULL)
              ) AS matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'





              share|improve this answer


























              • Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

                – Simon Aschemeier
                Nov 27 '18 at 7:09
















              1














              You can add flags using conditionals to your select like:



              SELECT *,
              IF(field1 LIKE '%foo%', 1, 0) AS field1_matches,
              IF(field2 LIKE '%bar%', 1, 0) AS field2_matches,
              IF(field3 LIKE '%foobar%', 1, 0) AS field3_matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'


              If you need the results in a single field as a comma separated list you can concatenate the results using CONCAT_WS and return NULL inside your conditional when there's no match:



              SELECT *,
              CONCAT_WS(',',
              IF(field1 LIKE '%foo%', 'field1', NULL),
              IF(field2 LIKE '%bar%', 'field2', NULL),
              IF(field3 LIKE '%foobar%', 'field3', NULL)
              ) AS matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'





              share|improve this answer


























              • Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

                – Simon Aschemeier
                Nov 27 '18 at 7:09














              1












              1








              1







              You can add flags using conditionals to your select like:



              SELECT *,
              IF(field1 LIKE '%foo%', 1, 0) AS field1_matches,
              IF(field2 LIKE '%bar%', 1, 0) AS field2_matches,
              IF(field3 LIKE '%foobar%', 1, 0) AS field3_matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'


              If you need the results in a single field as a comma separated list you can concatenate the results using CONCAT_WS and return NULL inside your conditional when there's no match:



              SELECT *,
              CONCAT_WS(',',
              IF(field1 LIKE '%foo%', 'field1', NULL),
              IF(field2 LIKE '%bar%', 'field2', NULL),
              IF(field3 LIKE '%foobar%', 'field3', NULL)
              ) AS matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'





              share|improve this answer















              You can add flags using conditionals to your select like:



              SELECT *,
              IF(field1 LIKE '%foo%', 1, 0) AS field1_matches,
              IF(field2 LIKE '%bar%', 1, 0) AS field2_matches,
              IF(field3 LIKE '%foobar%', 1, 0) AS field3_matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'


              If you need the results in a single field as a comma separated list you can concatenate the results using CONCAT_WS and return NULL inside your conditional when there's no match:



              SELECT *,
              CONCAT_WS(',',
              IF(field1 LIKE '%foo%', 'field1', NULL),
              IF(field2 LIKE '%bar%', 'field2', NULL),
              IF(field3 LIKE '%foobar%', 'field3', NULL)
              ) AS matches
              FROM TABLE
              WHERE field1 LIKE '%foo%'
              OR field2 LIKE '%bar%'
              OR field3 LIKE '%foobar%'






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Nov 20 '18 at 5:15

























              answered Nov 20 '18 at 4:51









              billynoahbillynoah

              10.8k64364




              10.8k64364













              • Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

                – Simon Aschemeier
                Nov 27 '18 at 7:09



















              • Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

                – Simon Aschemeier
                Nov 27 '18 at 7:09

















              Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

              – Simon Aschemeier
              Nov 27 '18 at 7:09





              Thank you, this works nice. Of course all the other approaches work as well, but yours is the easiest

              – Simon Aschemeier
              Nov 27 '18 at 7:09













              0














              How about a CASE expression:



              SELECT
              CASE WHEN field1 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
              THEN 'field1' ELSE '' END AS field1match,
              CASE WHEN field2 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
              THEN 'field2' ELSE '' END AS field2match,
              CASE WHEN field3 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
              THEN 'field3' ELSE '' END AS field3match
              FROM yourTable



              Demo



              If you just want to match substrings, then use this:



              SELECT
              CASE WHEN field1 REGEXP 'foo|bar|foobar'
              THEN 'field1' ELSE '' END AS field1match,
              CASE WHEN field2 REGEXP 'foo|bar|foobar'
              THEN 'field2' ELSE '' END AS field2match,
              CASE WHEN field3 REGEXP 'foo|bar|foobar'
              THEN 'field3' ELSE '' END AS field3match
              FROM yourTable





              share|improve this answer






























                0














                How about a CASE expression:



                SELECT
                CASE WHEN field1 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                THEN 'field1' ELSE '' END AS field1match,
                CASE WHEN field2 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                THEN 'field2' ELSE '' END AS field2match,
                CASE WHEN field3 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                THEN 'field3' ELSE '' END AS field3match
                FROM yourTable



                Demo



                If you just want to match substrings, then use this:



                SELECT
                CASE WHEN field1 REGEXP 'foo|bar|foobar'
                THEN 'field1' ELSE '' END AS field1match,
                CASE WHEN field2 REGEXP 'foo|bar|foobar'
                THEN 'field2' ELSE '' END AS field2match,
                CASE WHEN field3 REGEXP 'foo|bar|foobar'
                THEN 'field3' ELSE '' END AS field3match
                FROM yourTable





                share|improve this answer




























                  0












                  0








                  0







                  How about a CASE expression:



                  SELECT
                  CASE WHEN field1 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                  THEN 'field1' ELSE '' END AS field1match,
                  CASE WHEN field2 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                  THEN 'field2' ELSE '' END AS field2match,
                  CASE WHEN field3 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                  THEN 'field3' ELSE '' END AS field3match
                  FROM yourTable



                  Demo



                  If you just want to match substrings, then use this:



                  SELECT
                  CASE WHEN field1 REGEXP 'foo|bar|foobar'
                  THEN 'field1' ELSE '' END AS field1match,
                  CASE WHEN field2 REGEXP 'foo|bar|foobar'
                  THEN 'field2' ELSE '' END AS field2match,
                  CASE WHEN field3 REGEXP 'foo|bar|foobar'
                  THEN 'field3' ELSE '' END AS field3match
                  FROM yourTable





                  share|improve this answer















                  How about a CASE expression:



                  SELECT
                  CASE WHEN field1 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                  THEN 'field1' ELSE '' END AS field1match,
                  CASE WHEN field2 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                  THEN 'field2' ELSE '' END AS field2match,
                  CASE WHEN field3 REGEXP '[[:<:]]foo[[:>:]]|[[:<:]]bar[[:>:]]|[[:<:]]foobar[[:>:]]'
                  THEN 'field3' ELSE '' END AS field3match
                  FROM yourTable



                  Demo



                  If you just want to match substrings, then use this:



                  SELECT
                  CASE WHEN field1 REGEXP 'foo|bar|foobar'
                  THEN 'field1' ELSE '' END AS field1match,
                  CASE WHEN field2 REGEXP 'foo|bar|foobar'
                  THEN 'field2' ELSE '' END AS field2match,
                  CASE WHEN field3 REGEXP 'foo|bar|foobar'
                  THEN 'field3' ELSE '' END AS field3match
                  FROM yourTable






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 20 '18 at 5:14

























                  answered Nov 20 '18 at 4:48









                  Tim BiegeleisenTim Biegeleisen

                  226k1392146




                  226k1392146























                      0














                      Using CONCAT and CASE



                      You are exactly looking for the below result but I know you wish to separate fields with comma or any other sign, for this I can't access mysql now so I think you can manage that by yourself



                      SELECT *,
                      CONCAT(CASE WHEN field1 LIKE '%foo%' THEN 'field1' ELSE NULL END,
                      CASE WHEN field2 LIKE '%bar%' THEN 'field2' ELSE NULL END,
                      CASE WHEN field3 LIKE '%foobar%' THEN 'field3' ELSE NULL END) AS macthed_column
                      FROM youtable
                      WHERE field1 LIKE '%foo%'
                      OR field2 LIKE '%bar%'
                      OR field3 LIKE '%foobar%'


                      OUTPUT:



                      ID  field1  field2  field3      macthed_column
                      1 foo xxx xxx field1
                      2 xxx 12bar21 xxfoobarxx field2field3
                      3 f2o bar yxz field2





                      share|improve this answer






























                        0














                        Using CONCAT and CASE



                        You are exactly looking for the below result but I know you wish to separate fields with comma or any other sign, for this I can't access mysql now so I think you can manage that by yourself



                        SELECT *,
                        CONCAT(CASE WHEN field1 LIKE '%foo%' THEN 'field1' ELSE NULL END,
                        CASE WHEN field2 LIKE '%bar%' THEN 'field2' ELSE NULL END,
                        CASE WHEN field3 LIKE '%foobar%' THEN 'field3' ELSE NULL END) AS macthed_column
                        FROM youtable
                        WHERE field1 LIKE '%foo%'
                        OR field2 LIKE '%bar%'
                        OR field3 LIKE '%foobar%'


                        OUTPUT:



                        ID  field1  field2  field3      macthed_column
                        1 foo xxx xxx field1
                        2 xxx 12bar21 xxfoobarxx field2field3
                        3 f2o bar yxz field2





                        share|improve this answer




























                          0












                          0








                          0







                          Using CONCAT and CASE



                          You are exactly looking for the below result but I know you wish to separate fields with comma or any other sign, for this I can't access mysql now so I think you can manage that by yourself



                          SELECT *,
                          CONCAT(CASE WHEN field1 LIKE '%foo%' THEN 'field1' ELSE NULL END,
                          CASE WHEN field2 LIKE '%bar%' THEN 'field2' ELSE NULL END,
                          CASE WHEN field3 LIKE '%foobar%' THEN 'field3' ELSE NULL END) AS macthed_column
                          FROM youtable
                          WHERE field1 LIKE '%foo%'
                          OR field2 LIKE '%bar%'
                          OR field3 LIKE '%foobar%'


                          OUTPUT:



                          ID  field1  field2  field3      macthed_column
                          1 foo xxx xxx field1
                          2 xxx 12bar21 xxfoobarxx field2field3
                          3 f2o bar yxz field2





                          share|improve this answer















                          Using CONCAT and CASE



                          You are exactly looking for the below result but I know you wish to separate fields with comma or any other sign, for this I can't access mysql now so I think you can manage that by yourself



                          SELECT *,
                          CONCAT(CASE WHEN field1 LIKE '%foo%' THEN 'field1' ELSE NULL END,
                          CASE WHEN field2 LIKE '%bar%' THEN 'field2' ELSE NULL END,
                          CASE WHEN field3 LIKE '%foobar%' THEN 'field3' ELSE NULL END) AS macthed_column
                          FROM youtable
                          WHERE field1 LIKE '%foo%'
                          OR field2 LIKE '%bar%'
                          OR field3 LIKE '%foobar%'


                          OUTPUT:



                          ID  field1  field2  field3      macthed_column
                          1 foo xxx xxx field1
                          2 xxx 12bar21 xxfoobarxx field2field3
                          3 f2o bar yxz field2






                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Nov 20 '18 at 6:00

























                          answered Nov 20 '18 at 5:40









                          SusangSusang

                          4,6912724




                          4,6912724






























                              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%2f53386368%2fmysql-query-multiple-where-conditions-which-field-matches%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

                              鏡平學校

                              ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                              Why https connections are so slow when debugging (stepping over) in Java?