<bdo id='9LC3C'></bdo><ul id='9LC3C'></ul>
    1. <small id='9LC3C'></small><noframes id='9LC3C'>

      <legend id='9LC3C'><style id='9LC3C'><dir id='9LC3C'><q id='9LC3C'></q></dir></style></legend>

      <i id='9LC3C'><tr id='9LC3C'><dt id='9LC3C'><q id='9LC3C'><span id='9LC3C'><b id='9LC3C'><form id='9LC3C'><ins id='9LC3C'></ins><ul id='9LC3C'></ul><sub id='9LC3C'></sub></form><legend id='9LC3C'></legend><bdo id='9LC3C'><pre id='9LC3C'><center id='9LC3C'></center></pre></bdo></b><th id='9LC3C'></th></span></q></dt></tr></i><div id='9LC3C'><tfoot id='9LC3C'></tfoot><dl id='9LC3C'><fieldset id='9LC3C'></fieldset></dl></div>
      1. <tfoot id='9LC3C'></tfoot>

        如何使用 GROUP BY 在 MySQL 中连接字符串?

        时间:2023-08-18
      2. <legend id='JPx5u'><style id='JPx5u'><dir id='JPx5u'><q id='JPx5u'></q></dir></style></legend>
          <tbody id='JPx5u'></tbody>
        <tfoot id='JPx5u'></tfoot>
      3. <i id='JPx5u'><tr id='JPx5u'><dt id='JPx5u'><q id='JPx5u'><span id='JPx5u'><b id='JPx5u'><form id='JPx5u'><ins id='JPx5u'></ins><ul id='JPx5u'></ul><sub id='JPx5u'></sub></form><legend id='JPx5u'></legend><bdo id='JPx5u'><pre id='JPx5u'><center id='JPx5u'></center></pre></bdo></b><th id='JPx5u'></th></span></q></dt></tr></i><div id='JPx5u'><tfoot id='JPx5u'></tfoot><dl id='JPx5u'><fieldset id='JPx5u'></fieldset></dl></div>

              • <bdo id='JPx5u'></bdo><ul id='JPx5u'></ul>

                  <small id='JPx5u'></small><noframes id='JPx5u'>

                  本文介绍了如何使用 GROUP BY 在 MySQL 中连接字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  基本上问题是如何从中获得:

                  <前>foo_id foo_name1 安1 乙2 C

                  为此:

                  <前>foo_id foo_name1 甲乙2 C

                  解决方案

                  SELECT id, GROUP_CONCAT(name SEPARATOR ' ') FROM table GROUP BY id;

                  https://dev.mysql.com/doc/refman/8.0/en/aggregate-functions.html#function_group-concat

                  从上面的链接,GROUP_CONCAT:此函数返回一个字符串结果,其中包含来自组的连接的非 NULL 值.如果没有非 NULL 值,则返回 NULL.

                  Basically the question is how to get from this:

                  foo_id   foo_name
                  1        A
                  1        B
                  2        C
                  

                  to this:

                  foo_id   foo_name
                  1        A B
                  2        C
                  

                  解决方案

                  SELECT id, GROUP_CONCAT(name SEPARATOR ' ') FROM table GROUP BY id;
                  

                  https://dev.mysql.com/doc/refman/8.0/en/aggregate-functions.html#function_group-concat

                  From the link above, GROUP_CONCAT: This function returns a string result with the concatenated non-NULL values from a group. It returns NULL if there are no non-NULL values.

                  这篇关于如何使用 GROUP BY 在 MySQL 中连接字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何使用 MySQL 在两个日期之间进行查询? 下一篇:ERROR 2002 (HY000): 无法通过 socket '/var/run/mysqld/

                  相关文章

                  最新文章

                  <tfoot id='o1PhB'></tfoot>

                  1. <small id='o1PhB'></small><noframes id='o1PhB'>

                        <bdo id='o1PhB'></bdo><ul id='o1PhB'></ul>
                    1. <i id='o1PhB'><tr id='o1PhB'><dt id='o1PhB'><q id='o1PhB'><span id='o1PhB'><b id='o1PhB'><form id='o1PhB'><ins id='o1PhB'></ins><ul id='o1PhB'></ul><sub id='o1PhB'></sub></form><legend id='o1PhB'></legend><bdo id='o1PhB'><pre id='o1PhB'><center id='o1PhB'></center></pre></bdo></b><th id='o1PhB'></th></span></q></dt></tr></i><div id='o1PhB'><tfoot id='o1PhB'></tfoot><dl id='o1PhB'><fieldset id='o1PhB'></fieldset></dl></div>
                    2. <legend id='o1PhB'><style id='o1PhB'><dir id='o1PhB'><q id='o1PhB'></q></dir></style></legend>