Sorting SQL char field types

Source: Internet
Author: User

I did it. Access requires that the field's values be sorted, the field format is of type char, but the stored value is a number. Now you need to sort the field.

Find the following two ways to record them.

1, you can convert to int type reorder

Select *  from Jzd  orderbyconvert(intdesc

But this method is not good in access because there is no convert function.

So the final use of the 2nd clock method

2, you can be in front of 0, and then intercept the same length and reorder

Select *  from Jzd Order  by  Right ('+'+ID,4desc

Use this method to solve the problem.

Sorting SQL char field types

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.