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

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

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

        MySQL选择与CONCAT条件

        时间:2023-05-24
      1. <tfoot id='W8vuG'></tfoot>

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

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

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

                1. 本文介绍了MySQL选择与CONCAT条件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我正在尝试在脑海中编译这个..我有一个包含名字和姓氏字段的表我有一个字符串,如Bob Jones"或Bob Michael Jones"等.

                  I'm trying to compile this in my mind.. i have a table with firstname and lastname fields and i have a string like "Bob Jones" or "Bob Michael Jones" and several others.

                  问题是,我有例如名字中的鲍勃,以及姓氏中的迈克尔·琼斯

                  the thing is, i have for example Bob in firstname, and Michael Jones in lastname

                  所以我想

                  SELECT neededfield, CONCAT(firstname, ' ', lastname) as firstlast 
                    FROM users 
                   WHERE firstlast = "Bob Michael Jones"
                  

                  但它说未知的列firstlast"..有人可以帮忙吗?

                  but it says unknown column "firstlast".. can anyone help please ?

                  推荐答案

                  您提供的别名用于查询的输出 - 它们在查询本身中不可用.

                  The aliases you give are for the output of the query - they are not available within the query itself.

                  您可以重复该表达式:

                  SELECT neededfield, CONCAT(firstname, ' ', lastname) as firstlast 
                  FROM users
                  WHERE CONCAT(firstname, ' ', lastname) = "Bob Michael Jones"
                  

                  或包装查询

                  SELECT * FROM (
                    SELECT neededfield, CONCAT(firstname, ' ', lastname) as firstlast 
                    FROM users) base 
                  WHERE firstLast = "Bob Michael Jones"
                  

                  这篇关于MySQL选择与CONCAT条件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:将现有表格中每个单词的首字母大写 下一篇:无法创建实体数据模型 - 使用 MySql 和 EF6

                  相关文章

                  <legend id='ToCjB'><style id='ToCjB'><dir id='ToCjB'><q id='ToCjB'></q></dir></style></legend>
                2. <small id='ToCjB'></small><noframes id='ToCjB'>

                3. <tfoot id='ToCjB'></tfoot>

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