Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

SQL SERVER sorts the search results

2025-01-27 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

1. Sort by single column

Select column name from table name order by column name

2. Sort by multiple columns

Select column name 1, column name 2, column name 3 from table name order by column name 1, column name 2

Note: if there are multiple duplicates in column name 1, it will not be sorted by column name 2, but will be sorted by column name 2 only if column name 1 is unique.

3. Sort by column location

Select column name 1, column name 2, column name 3 from table name order by 2

Remarks: column name 1, column name 2, column name 3 are marked clearly in order to make the 2 and 3 after order by execute correctly.

4. Specify the sorting direction

The order by column name is followed by desc, which performs descending order.

The order by column name is not followed by desc, and the default is ascending order. If you perform ascending order, adding asc after order by does not affect it.

Select column name 1, column name 2, column name 3 from table name order by column name 1 desc

Specifies that a column is executed in descending order

Select column name 1, column name 2, column name 3 from table name order by column name 1 desc, column name 2, column name 3

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report