首页 > 数据库技术 > 详细

rownum的用法oracle

时间:2016-06-24 12:51:24      阅读:314      评论:0      收藏:0      [点我收藏+]
SELECT * FROM T WHERE ROWNUM=1 可以查询出来数据,
而SELECT * FROM T WHERE ROWNUM=2不可以查询出来数据。
in the case of where rownum = 1, the first row passes the test, is output and rownum goes
to 2. No other row ever satisfies the predicate and rownum stays at 2 for the rest of
the query.
in the case of where rownum = 2, the first row is rownum 1, it fails. The next row is
ALSO rownum = 1 and likewise fails. And so on. There can be NO row 2 if there is not a
row 1.

rownum的用法oracle

原文:http://www.cnblogs.com/hym-pcitc/p/5613594.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!