日期:2014-05-17  浏览次数:20950 次

求助, 这个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) ;