还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

oracle top 替代方案

来源:清泛原创     2017-03-17 15:55:04    人气:     我有话说( 0 人参与)

由于Oracle不支持select top 语句,所以在Oracle中经常是用order by 跟 rownum的组合来实现select top n的查询。select * from (...

由于Oracle不支持select top 语句,所以在Oracle中经常是用order by 跟 rownum 的组合来实现select top n的查询。

select * from (
    select * from xxx order by xx
) where rownum <= 100
等同于SQL:select top 100 * from xxx order by xx。

oracle top

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: