按列位置排序:除了能用列名指定排序顺序外,order by还支持相对列位置的排序
select prod_id,prod_price,prod_namefrom Productsorder by 2,3;
#order by 2,3表示先按prod_price,再按 prod_name进行排序。