为了账号安全,请及时绑定邮箱和手机立即绑定

请问一个字段按倒序排列另外一个按照正序排列一个语句怎么写?

这样好像不行(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



正在回答

1 回答

select ProductID, Name, ProductNumber, Color, Size, ListPrice from Production.Productorder by 2 desc,3 desc这样测试第二列就是倒序,第三列就是正序,不知道为什么。这是我代码测试的结果。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问一个字段按倒序排列另外一个按照正序排列一个语句怎么写?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信