mysql 和oracle 取固定条数数据

来源:互联网 发布:网络方面的实用杂志 编辑:程序博客网 时间:2024/05/21 23:43

 

 

select * from organization order by id desc LIMIT 3(mysql) LIMIT 关键字

select * from organization where rownum<4 order by id (oracle) rownum 关键字