10 Query Result sorting

Source: Internet
Author: User

1. Sort the specified columnssingle-column sorting features:(1) Sorting basis(2) Sorting method: Ascending, Descending (Asc/desc)SELECT col_list from table _nameORDER by ordered_by_list [Asc/desc] Example: Query all the score information in the score table numbered 1 and sort in ascending order of fractions SELECT * FROM scoresWHERE GNO = 1ORDER by score ASC 2. Multi-column sortingmulti-column sorting features:(1) Sorting basis(2) Sorting method(3) Priority levelSELECT col_list from table _nameORDER by ordered_by_list1 [Asc/desc],ordered_by_list2 [Asc/desc] ... Example: Query the score bar for all information and sort by the game number ascending and descending order of fractions SELECT * FROM scoresWHERE GNO = 1ORDER by gno ASC, score DESC Note: High priority in front

10 Query Result sorting

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.