如何在 PL/SQL 中执行字符串连接?

发布于 2024-09-28 09:29:20 字数 259 浏览 3 评论 0原文

我有一个变量定义为

define dbs '&1'

假设我将 database1 作为参数传递。然后该语句被解释为

define dbs database1

我想在字符串周围附加单引号,即我希望它被解释为

define dbs 'database1'

我应该如何做?

I have a variable defined as

define dbs '&1'

Suppose I pass database1 as an argument. Then the statement is interpreted as

define dbs database1

I want to append single quotes around the string, ie I want it to be interpreted as

define dbs 'database1'

How should I do this?

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

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

发布评论

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

评论(1

你是暖光i 2024-10-05 09:29:20

字符串中的单引号需要用另一个单引号转义,因此您可以编写(如果我正确理解宏扩展)

 '''&1'''

字符串连接是通过 || 完成的。操作员

 '''' || '&1' || ''''

Single quotes in strings need to be escaped with another single quote, so you would write (if I understand macro expansion correctly)

 '''&1'''

String concatenation is done with the || operator

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