Oracle:处理名为 COMMENT 的字段

发布于 2024-09-26 08:34:01 字数 372 浏览 5 评论 0原文

我有一个表,其中有一个名为 COMMENT 的字段,该字段似乎是保留字。

使用 SQLDeveloper,如果我尝试:

select
  [COMMENT],
  another_field
FROM table_created_by_idiot_developer

我得到

SQL Error: ORA-00936: missing expression

How can I access this field in my select in SQL Developer? (这是 SQL Developer 的问题,还是 Oracle 中不应将字段命名为 COMMENT?)

I have a table with a field named COMMENT, which appears to be a reserved word.

Using SQLDeveloper, if I try:

select
  [COMMENT],
  another_field
FROM table_created_by_idiot_developer

I get

SQL Error: ORA-00936: missing expression

How can I access this field in my select in SQL Developer? (Is this a problem with SQL Developer, or should field not be named COMMENT in oracle?)

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

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

发布评论

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

评论(1

私野 2024-10-03 08:34:01

尝试使用 "COMMENT" 而不是 [COMMENT]。这是各种 DBMS 普遍接受的替代语法。我使用此语法来引用 SQLite 中名称中包含点或 UTF8 字符的列。

Try "COMMENT" instead of [COMMENT]. This is alternate syntax commonly accepted by various DBMSes. I have used this syntax to refer to columns having dots or UTF8 characters in their names in SQLite.

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