How to correctly connect a MySQL string to a function

Source: Internet
Author: User

The following articles mainly introduce the specific operation scheme of MySQL string connection functions. We will take the concat function in MySQL database as an example to describe in detail, the following describes the specific operations of MySQL string connection functions.

Usage:

CONCAT (str1, str2 ,...)

The MySQL string generated by the connection parameter is returned. If any parameter is NULL, the return value is NULL.

Note:

If all parameters are non-binary strings, the result is a non-binary string.

If the independent variable contains any binary string, the result is a binary string.

A numeric parameter is converted to an equivalent binary string format. To avoid this, you can use an explicit cast type, for example:

Select concat (CAST (int_col as char), char_col)

The concat function of MySQL can connect one or more MySQL strings, such

 
 
  1. MySQL> select concat('10');  
  2. +--------------+  
  3. | concat('10') |  
  4. +--------------+  
  5. | 10 |  
  6. +--------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select concat('11','22','33');  
  9. +------------------------+  
  10. | concat('11','22','33') |  
  11. +------------------------+  
  12. | 112233 |  
  13. +------------------------+  
  14. 1 row in set (0.00 sec)  

When the MySQL concat function connects to the MySQL string, if one of them is NULL, NULL is returned.

 
 
  1. MySQL> select concat('11','22',null);  
  2. +------------------------+  
  3. | concat('11','22',null) |  
  4. +------------------------+  
  5. | NULL |  
  6. +------------------------+  
  7. 1 row in set (0.00 sec) 

Concat_ws function in MySQL

Usage:

CONCAT_WS (separator, str1, str2 ,...)

CONCAT_WS () represents CONCAT With Separator, which is a special form of CONCAT. The first parameter is the delimiter of other parameters. The separator is placed between the two MySQL strings to be connected. The delimiter can be a string or another parameter.

Note:

If the Delimiter is NULL, the result is NULL. The function ignores the NULL value after any separator parameter.

For example, separate the strings with commas (,).

 
 
  1. MySQL> select concat_ws(',','11','22','33');  
  2. +-------------------------------+  
  3. | concat_ws(',','11','22','33') |  
  4. +-------------------------------+  
  5. | 11,22,33 |  
  6. +-------------------------------+  
  7. 1 row in set (0.00 sec)  

Unlike the concat function in MySQL, The concat_ws function does not return NULL because of the NULL value during execution.

 
 
  1. MySQL> select concat_ws(',','11','22',NULL);  
  2. +-------------------------------+  
  3. | concat_ws(',','11','22',NULL) |  
  4. +-------------------------------+  
  5. | 11,22 |  
  6. +-------------------------------+  
  7. 1 row in set (0.00 sec) 

Group_concat function in MySQL

The complete syntax is as follows:

Group_concat ([DISTINCT] field to be connected [Order by asc/DESC sorting field] [Separator 'delimiter'])

Basic Query

 
 
  1. MySQL> select * from aa;  
  2. +------+------+  
  3. | id| name |  
  4. +------+------+  
  5. |1 | 10|  
  6. |1 | 20|  
  7. |1 | 20|  
  8. |2 | 20|  
  9. |3 | 200 |  
  10. |3 | 500 |  
  11. +------+------+  
  12. 6 rows in set (0.00 sec) 

Group by id and print the value of the name field in one row, separated by commas (, default)

 
 
  1. MySQL> select id,group_concat(name) from aa group by id;  
  2. +------+--------------------+  
  3. | id| group_concat(name) |  
  4. +------+--------------------+  
  5. |1 | 10,20,20|  
  6. |2 | 20 |  
  7. |3 | 200,500|  
  8. +------+--------------------+  
  9. 3 rows in set (0.00 sec) 

Group by id, print the value of name field in one row, separated by semicolons

 
 
  1. MySQL> select id,group_concat(name separator ';') from aa group by id;  
  2. +------+----------------------------------+  
  3. | id| group_concat(name separator ';') |  
  4. +------+----------------------------------+  
  5. |1 | 10;20;20 |  
  6. |2 | 20|  
  7. |3 | 200;500 |  
  8. +------+----------------------------------+  
  9. 3 rows in set (0.00 sec) 

Group by id and print the value of the redundant name field in one row. The above content is an introduction to the specific operation solution of the MySQL string connection function. I hope you will gain some benefits.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.