order by支持相对列位置的排序
select prod_id,prod_price,prod_name
from Products
order by 2,3;
#order by 2,3表示先按prod_price,再按 prod_name进行排序。