求助, 这个sqlserver语句用oracle怎么写??select top 3 * from users where userId not in(select top 3 u
求助, 这个sqlserver语句用oracle怎么写??
select top 3 * from users where userId not in(select top 3 userId from users)
[解决办法]
select * from users where rownum<4 and userId not in (select userId from users where rownum<4) ;
