现有书目表book,包含字段:price (float); 现在查询一条书价最高的书

6 查阅
现有书目表book,包含字段:price (float); 现在查询一条书价最高的书目的详细信息,以下语句正确的是()

select top 1 * from book order by price asc

select top 1 * from book order by price desc

select top 1 * from book where price= (select max (price)from book)

select top 1 * from book where price= max(price)

参考答案:

Bc

SQL试