码迷,mamicode.com
首页 > 数据库 > 详细

rownum的用法oracle

时间:2016-06-24 12:53:41      阅读:182      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!