Oracle 字符串查询
我想对这种格式的字符串执行查询,xxxx/xxxx,
其中 x 是数字。当我使用 Oracle 接口或 C# 应用程序执行它时,我收到此错误:
ORA-00904: "xxxx/xxxx": invalid identifier
我执行了此查询:
SELECT * FROM "My Table" WHERE Field="xxxx/xxxx"
I want to perform my query on a string in this format, xxxx/xxxx
where x is a number. when I perform it using the Oracle interface or my C# application I get this error:
ORA-00904: "xxxx/xxxx": invalid identifier
I performed this query:
SELECT * FROM "My Table" WHERE Field="xxxx/xxxx"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在 SQL 字符文字周围使用单引号,例如 xxxx/xxxx:
You should use single quotes aroung SQL character literals like xxxx/xxxx: