保留字“CLUSTER”在 Oracle 10g 中用作列名
这是一个列名为“CLUSTER”的现有表。我必须查询该表以检索“CLUSTER”列的值。我遇到了缺少表达式错误,因为 CLUSTER 是 Oracle 中的保留字。由于 Oracle 允许按名称 CLUSTER 创建列,因此应该有方法检索相同的列。如何查询该列?
PS - 我没有重命名该列的选项。
提前致谢。
These is an existing table with column name "CLUSTER". I have to query this table to retrieve values of column "CLUSTER". I am getting missing expression error, since CLUSTER is a reserved word in Oracle. Since oracle has allowed to create a column by name CLUSTER, there should be way to retrieve the same. How can query for this column?
PS - I don't have an option to rename the column.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用双引号来引用该列,例如:
此外,请确保匹配列名称中的大小写。
Just use double quotes to refer to that column, like:
Also, make sure you match the case in the column name.