请问一个字段按倒序排列另外一个按照正序排列一个语句怎么写?
这样好像不行(select ProductID, Name, ProductNumber, Color, Size, ListPrice from Production.Product
order by 2 desc,3 asc)
这样的话是分开的(select ProductID, Name, ProductNumber, Color, Size, ListPrice from Production.Product
order by 2 desc
select ProductID, Name, ProductNumber, Color, Size, ListPrice from Production.Product
order by 3 asc
)