• <legend id='e7NLo'><style id='e7NLo'><dir id='e7NLo'><q id='e7NLo'></q></dir></style></legend>

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

        <tfoot id='e7NLo'></tfoot>
      1. MySQL 连接运算符

        时间:2023-06-01
          <tbody id='EqEPM'></tbody>
      2. <i id='EqEPM'><tr id='EqEPM'><dt id='EqEPM'><q id='EqEPM'><span id='EqEPM'><b id='EqEPM'><form id='EqEPM'><ins id='EqEPM'></ins><ul id='EqEPM'></ul><sub id='EqEPM'></sub></form><legend id='EqEPM'></legend><bdo id='EqEPM'><pre id='EqEPM'><center id='EqEPM'></center></pre></bdo></b><th id='EqEPM'></th></span></q></dt></tr></i><div id='EqEPM'><tfoot id='EqEPM'></tfoot><dl id='EqEPM'><fieldset id='EqEPM'></fieldset></dl></div>
          • <bdo id='EqEPM'></bdo><ul id='EqEPM'></ul>

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

              <legend id='EqEPM'><style id='EqEPM'><dir id='EqEPM'><q id='EqEPM'></q></dir></style></legend>

            1. <tfoot id='EqEPM'></tfoot>

                  本文介绍了MySQL 连接运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我不知道 MySQL 的连接运算符.

                  I don't know concatenation operator for MySQL.

                  我已经尝试使用此代码进行连接:

                  I have tried this code for concatenation:

                  SELECT vend_name || ' (' || vend_country || ')'
                  FROM Vendors
                  ORDER BY vend_name;
                  

                  但是没有用.我应该使用哪个运算符来连接字符串?

                  But it didn't work. Which operator should I use to concatenate strings?

                  推荐答案

                  您正在使用 ORACLE 类型的串联.MySQL的应该是

                  You were using ORACLE type of concatenation. MySQL's Should be

                   SELECT CONCAT(vend_name, '(', vend_country, ')')
                  

                  调用 CONCAT() 函数并用逗号分隔您的值.

                  Call the CONCAT() function and separate your values with commas.

                  这篇关于MySQL 连接运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:MySQL Regexp 是否支持 Unicode 匹配 下一篇:MySQL 中两个时间字段的分钟数差异

                  相关文章

                  1. <legend id='OWPOC'><style id='OWPOC'><dir id='OWPOC'><q id='OWPOC'></q></dir></style></legend><tfoot id='OWPOC'></tfoot>

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

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

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