如何从表中选择所有列,以及 ROWNUM 等附加列?

How do I select all the columns from a table, plus additional columns like ROWNUM?(如何从表中选择所有列,以及 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 等附加列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)