• <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 连接运算符

        MySQL concatenation operator(MySQL 连接运算符)
          <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 连接运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Bogus foreign key constraint fail(虚假外键约束失败)
                  how to get last insert id after insert query in codeigniter active record(如何在codeigniter活动记录中插入查询后获取最后一个插入ID)
                  Force InnoDB to recheck foreign keys on a table/tables?(强制 InnoDB 重新检查表/表上的外键?)
                  How to auto generate migrations with Sequelize CLI from Sequelize models?(如何使用 Sequelize CLI 从 Sequelize 模型自动生成迁移?)
                  Clear MySQL query cache without restarting server(无需重启服务器即可清除 MySQL 查询缓存)
                  ALTER TABLE to add a composite primary key(ALTER TABLE 添加复合主键)
                      <tbody id='OWPOC'></tbody>
                  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'>