How do I select all the columns from a table, plus additional columns like ROWNUM?(如何从表中选择所有列,以及 ROWNUM 等附加列?)
问题描述
在 Oracle 中,可以执行 SELECT
语句,将行号作为结果集中的列返回.
例如
SELECT rownum, column1, column2 FROM table
返回:
<前>rownum column1 column21 乔·史密斯2 鲍勃·琼斯但我不想手动指定每一列.我想做类似的事情:
select rownum,* from table
<前>rownum column1 column2 column3 column41 乔·史密斯 1 22 鲍勃·琼斯 3 4
有什么想法吗?
用表名来限定*:
select rownum, table.* from table
In Oracle, it's possible to do a SELECT
statement that returns the row number as a column in your result set.
For example,
SELECT rownum, column1, column2 FROM table
returns:
rownum column1 column2 1 Joe Smith 2 Bob Jones
But I don't want to specify each column by hand. I want to do something like:
select rownum,* from table
rownum column1 column2 column3 column4 1 Joe Smith 1 2 2 Bob Jones 3 4
Any ideas?
Qualify the * with the name of the table:
select rownum, table.* from table
这篇关于如何从表中选择所有列,以及 ROWNUM 等附加列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从表中选择所有列,以及 ROWNUM 等附加列?
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01