一条sql语句的理解 select * from(select ROW_NUMBER() over (order by unit_price desc) as rownum,*from Price) as temp where rownum between 1 and 10 请各位大神们解释一下,g感激不尽呀
------解决方案--------------------
SQL code
select * from
(
select ROW_NUMBER() over (order by unit_price desc) as rownum,* from Price
) as temp
where rownum between 1 and 10
------解决方案--------------------