Oracle中的WJXBFS1关键字

发布于 2024-10-21 19:33:39 字数 128 浏览 4 评论 0原文

在 Oracle 查询之一中,我看到类似

SELECT something, sum(1.0) WJXBFS1 FROM some_table

“这是什么意思?”之类的内容。

In one of the Oracle queries, I see something like

SELECT something, sum(1.0) WJXBFS1 FROM some_table

What does this mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉南桥 2024-10-28 19:33:39

这不是关键字,而是计算值的别名,以便您可以控制字段名称,而不是让 Oracle 生成字段名称。否则你将如何访问该字段?

Oracle 中的别名可以使用或不使用“AS”子句来完成,因此请认为

SELECT something, sum(1.0) WJXBFS1 FROM some_table 

与 相同,

SELECT something, sum(1.0) AS WJXBFS1 FROM some_table 

这样您就知道可以通过名称 WJBFS1 引用保存 SUM(1.0) 值的列

顺便说一下,您可以使用别名任何列 - 不仅仅是计算的列。例如,这将是完全合法的……

  select a as b, b as a from sometable;

并不是说这很聪明!只是说这是合法的。

This is not a keyword, it is an alias for a calculated value so that you can control the field name rather than having Oracle generate one. Otherwise how would you access that field?

Aliasing in Oracle can be done either with or without an "AS" clause, so think of

SELECT something, sum(1.0) WJXBFS1 FROM some_table 

as being the same as

SELECT something, sum(1.0) AS WJXBFS1 FROM some_table 

so you know that you can reference the column holding the value of SUM(1.0) by the name WJBFS1

Incidentally, you can alias any column - not just calculated ones. For example, this would be perfectly legal..

  select a as b, b as a from sometable;

Not saying it would be smart! Just saying that it is legal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文