怎么取得 top 20以后的记录(SQL语句)

如何取得 top 20以后的记录(SQL语句)
如何取得   top   20以后的记录(SQL语句)

------解决方案--------------------
我回去帮你查查书。我这里手头没有sql的参考资料
我说not in可能语法有问题
其他的比如exist
not exist之类的。很久没有动手开发db了
------解决方案--------------------
select * from table where ans not in (select * top 20 from table)

where后面应该是 where ans not in(select ans top 20 from table)
括号的select只能查询一列。
------解决方案--------------------
select * from tablename where clomnuname not in(select top 20 clomnuname from tablename)
试过了`可以!