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) ;
select * from users where rownum<4 and userId not in (select userId from users where rownum<4) ;