Introduction to common conversion functions in MySQL

Source: Internet
Author: User

cast function; Convert function.

Usage: CAST (expr as type), convert (Expr,type), convert (expr USING transcoding_name).

SELECT CONVERT (' abc ' USING UTF8);

convert varchar to int with cast (str as unsigned) str to a varchar type string.

For example, the usual percentage conversions:

Select CAST ((1/3) *100 as UNSIGNED) as percent from dual;

Result:33


MySQL type conversion function parameters: Cast (xxx as type), convert (XXX, type)
This type can be one of the following values:
binary[(N)]
char[(N)]
DATE
Datetime
DECIMAL
Signed [INTEGER]
Time
UNSIGNED [INTEGER]

Integer: Signed
unsigned integer: UNSIGNED
Binary, with binary prefix effect: binary
Character type, with parameters: CHAR ()
Date: Date
Time:
DateTime Date/Time type
Floating point number: DECIMAL

Binary STR is the abbreviated form of cast (str as BINARY):

mysql> SELECT BINARY ' a ' = ' a ';

0

Note: It is sometimes important to be aware of escaping when using: http://www.cnblogs.com/end/archive/2011/04/01/2002516.html

MySQL function Daquan: http://www.cnblogs.com/kissdodog/p/4168721.html

MySQL function Official document: https://dev.mysql.com/doc/refman/5.7/en/func-op-summary-ref.html

Introduction to common conversion functions in MySQL

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.