select *
from (select t.*,row_number() over(partition by t.公司名 order by 1) rn
from t
)
where rn<=10
oracle 每个类别取几条的语法怎么写
阅读 41
2022-06-30
select *
from (select t.*,row_number() over(partition by t.公司名 order by 1) rn
from t
)
where rn<=10
相关推荐
精彩评论(0)