ROWNUM 返回当前行号

语法

rownum

功能

返回当前行号

参数

返回值

数值型

示例

建立环境:

create table t_week (xqn number(1,0));
insert into t_week (xqn) values(1);
insert into t_week (xqn) values(2);
insert into t_week (xqn) values(3);
insert into t_week (xqn) values(4);
insert into t_week (xqn) values(5);
insert into t_week (xqn) values(6);
insert into t_week (xqn) values(7);
commit;

查询结果:

SQL> select rownum, xqn  from t_week;

    ROWNUM        XQN
---------- ----------
         1          1
         2          2
         3          3
         4          4
         5          5
         6          6
         7          7

已选择7行。
关于
本网站专注于 Java、数据库(MySQL、Oracle)、Linux、软件架构及大数据等多领域技术知识分享。涵盖丰富的原创与精选技术文章,助力技术传播与交流。无论是技术新手渴望入门,还是资深开发者寻求进阶,这里都能为您提供深度见解与实用经验,让复杂编码变得轻松易懂,携手共赴技术提升新高度。如有侵权,请来信告知:hxstrive@outlook.com
公众号