Oracle查询错误
我对 Oracle 很陌生,我的查询似乎有一些问题
这是我得到的结果
SELECT (REPLACE(column1, 'test', '') + ': ' + column2) AS column3 FROM table
我收到一个 ORA-01722 invalid number
错误。
我认为这与 +
有关,但我不确定正确的语法是什么。
有什么想法吗?
I'm quite new to Oracle and seem to having some problems with my query
Here's what i've got
SELECT (REPLACE(column1, 'test', '') + ': ' + column2) AS column3 FROM table
I get a ORA-01722 invalid number
error with this.
I think it's something to do with the +
's but i'm not sure what the correct syntax is.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你应该使用||连接两个字符串...
You should use || to concat two strings...
Oracle 中连接的正确方法是使用
||
The correct way to concatenate in Oracle is by using
||
或者使用 CONCAT 函数
(没有人使用它,因为双管更容易使用,所以只是想在这里完成)
问候,
抢。
or by using the CONCAT function
(which nobody uses because the double pipe is easier to use, so just trying to be complete here)
Regards,
Rob.