oracle 多对一时只去前两条数据sql
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 多对一时只去前两条数据sql相关的知识,希望对你有一定的参考价值。
(select table5.shopareaid,table5.usersid ,table5.username from (select sg.shopareaid,u1.usersid,u1.username,row_number() OVER(PARTITION BY sg.shopareaid ORDER BY sg.shopareaid desc) numbers from shops s, shopgroup sg,users u1 where s.shopgroupid = sg.shopgroupid and u1.companysid=7 and u1.usertitle = 40 and u1.status<=2 and s.shopsid=u1.residentshopid) table5 where table5.numbers=1) table1,
.
以上是关于oracle 多对一时只去前两条数据sql的主要内容,如果未能解决你的问题,请参考以下文章