如何在查询中使用别名字段? (甲骨文10克)
如果我写这个查询:
select Fname,Age*2 as Demo from Men where Demo = 5
那么我会收到错误
ORA-00904(演示未识别)
我如何使用它?
If I write this query:
select Fname,Age*2 as Demo from Men where Demo = 5
then I get the error
ORA-00904 (Demo not identified )
How I can use it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Oracle 中你不需要“as”。
您只需编写:
但是您不能在“where”子句中使用别名。
引用另一个网站上的帖子:
You don't need "as" in Oracle.
You simply write:
However you cannot use the alias in the "where"-clause.
A Quote from a post on another site: