MySQL type conversion uses cast to convert varchar to int type sort

Source: Internet
Author: User

MySQL provides us with two types of conversion functions: cast and convert, how can we let go of the ready-made stuff?

1 BINARY[(N)]2 CHAR[(N)]3 DATE4 DATETIME5 DECIMAL6Signed[INTEGER]7  Time8UNSIGNED[INTEGER]

Example:

--use cast to convert varchar to int type sort select server_id from cardserver where game_id = 1 order by CAST (server_id as signed) DESC limit 10;--using convert to convert varchar to int type sort select server_id from cardserver where game_id = 1 order by CONVERT (server_id,signed) des C Limit 10

MySQL type conversion uses cast to convert varchar to int type sort

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.