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

      <tfoot id='p8nlW'></tfoot>
    2. <small id='p8nlW'></small><noframes id='p8nlW'>

        如何在mysql中拆分名称字符串?

        时间:2023-08-17

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

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

                  <tfoot id='oiJbK'></tfoot>
                  <legend id='oiJbK'><style id='oiJbK'><dir id='oiJbK'><q id='oiJbK'></q></dir></style></legend>

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

                  问题描述

                  如何在mysql中拆分名称字符串?

                  How to split the name string in mysql ?

                  例如:

                  name
                  -----
                  Sachin ramesh tendulkar
                  Rahul dravid
                  

                  将名称拆分为firstname,middlename,lastname:

                  firstname   middlename    lastname
                  ---------  ------------   ------------
                  sachin     ramesh         tendulkar
                  rahul      dravid
                  

                  推荐答案

                  我已将此答案分为两 (2) 个方法.第一种方法将您的全名字段分为名字、中间名和姓氏.如果没有中间名,中间名将显示为NULL.

                  I've separated this answer into two(2) methods. The first method will separate your fullname field into first, middle, and last names. The middle name will show as NULL if there is no middle name.

                  SELECT
                     SUBSTRING_INDEX(SUBSTRING_INDEX(fullname, ' ', 1), ' ', -1) AS first_name,
                     If(  length(fullname) - length(replace(fullname, ' ', ''))>1,  
                         SUBSTRING_INDEX(SUBSTRING_INDEX(fullname, ' ', 2), ' ', -1) ,NULL) 
                             as middle_name,
                     SUBSTRING_INDEX(SUBSTRING_INDEX(fullname, ' ', 3), ' ', -1) AS last_name
                  FROM registeredusers
                  

                  第二种方法将中间名视为姓氏的一部分.我们只会从您的全名字段中选择名字和姓氏列.

                  This second method considers the middle name as part of the lastname. We will only select a firstname and lastname column from your fullname field.

                  SELECT
                     SUBSTRING_INDEX(SUBSTRING_INDEX(fullname, ' ', 1), ' ', -1) AS first_name,
                      TRIM( SUBSTR(fullname, LOCATE(' ', fullname)) ) AS last_name
                  FROM registeredusers
                  

                  您可以使用 substr、locate、substring_index 等来做很多很酷的事情.检查手册是否有真正的困惑.http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

                  There's a bunch of cool things you can do with substr, locate, substring_index, etc. Check the manual for some real confusion. http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

                  这篇关于如何在mysql中拆分名称字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:MySQL 无法添加外键约束 下一篇:如何在 MySQL 中进行批量插入

                  相关文章

                  最新文章

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

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

                      <tfoot id='mPRVY'></tfoot>

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

                        <bdo id='mPRVY'></bdo><ul id='mPRVY'></ul>