一条sql语句的理解select * from(select ROW_NUMBER() over (order by unit_price desc) as rownum,*from
一条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 [解决办法]