天天看點

SQL:DESC和ASC的意思

SQL裡desc和asc的意思

   desc是descend 降序意思

   asc 是ascend 升序意思

例如:

以逆字母順序顯示公司名稱,并以數字順序顯示順序号:

SELECT Company, OrderNumber FROM Orders ORDER BY Company DESC, OrderNumber ASC

參考:

http://www.w3school.com.cn/sql/sql_orderby.asp