Oracle中的WJXBFS1关键字
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是关键字,而是计算值的别名,以便您可以控制字段名称,而不是让 Oracle 生成字段名称。否则你将如何访问该字段?
Oracle 中的别名可以使用或不使用“AS”子句来完成,因此请认为
与 相同,
这样您就知道可以通过名称 WJBFS1 引用保存 SUM(1.0) 值的列
顺便说一下,您可以使用别名任何列 - 不仅仅是计算的列。例如,这将是完全合法的……
并不是说这很聪明!只是说这是合法的。
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
as being the same as
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..
Not saying it would be smart! Just saying that it is legal.