SQL Order By 多字段排序

让我们以一个有很多列的客户表为例,下面的 SQL 语句从名为“customer”的表中选择所有客户,存储在“country”和“Customer-Name”列中:

SELECT * FROM customers  
ORDER BY country, Customer-Name;  

 

热门文章

优秀文章