在SQL Server数据库(排序规则为默认值)中,有一个产品表products,你
5 查阅
SELECT productname,price from products order by price ASC
SELECT productname,price from products order by price DESC
SELECT productname,price from products order by price
SELECT productname and price from products order by price DESC
参考答案: