In mysql, how does one update the value of a field to its own value and connect it to a string?

Source: Internet
Author: User

In mysql, how to update a field value to its own value connected to a string CONCAT (str1, str2,...) returns the string produced by the connection parameter. If any parameter is NULL, the return value is NULL. There may be one or more parameters. 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) mysql> select concat ('My, s', 'ql '); -> 'mysql' MySQL> select concat ('My, NULL, 'ql ');-> NULLmysql> select concat (14.3);-> '14. 3 'eg: [SQL] UPDATE admin_role SET auth = CONCAT (auth, ',') WHERE id IN (, 4 );

 


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.