数据库|各种数据库查询前几条方法

【数据库|各种数据库查询前几条方法】sqlserver使用:selecttop 1* from users
mysql使用:select * from users limit 1,10
oracle使用:select * from userswhere rownum=2

    推荐阅读