Oracle查询错误

发布于 2024-11-23 21:12:41 字数 271 浏览 4 评论 0原文

我对 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 技术交流群。

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

发布评论

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

评论(3

快乐很简单 2024-11-30 21:12:41

你应该使用||连接两个字符串...

SELECT (REPLACE(column1, 'test', '') || ': ' || column2) AS column3 FROM table

You should use || to concat two strings...

SELECT (REPLACE(column1, 'test', '') || ': ' || column2) AS column3 FROM table
话少心凉 2024-11-30 21:12:41

Oracle 中连接的正确方法是使用 ||

select 'a' || 'b' from dual;

The correct way to concatenate in Oracle is by using ||

select 'a' || 'b' from dual;
风吹过旳痕迹 2024-11-30 21:12:41

或者使用 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.

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