如何选择在字段中显示带有两个单引号的列

发布于 2025-01-18 05:38:15 字数 607 浏览 1 评论 0原文

PostgreSQL查询

select 'insert into employee(ID_NUMBER,NAME,OFFICE) values ('''||ID_NUMBER||''','''||NAME||''','''||replace(DESIGNATION,'&','and')||''','''||replace(DEPT_NAME,'&','and')||''')' as col 
from icare_employee_view 
where id_number='201403241' 
order by name;

输出

insert into employee(ID_NUMBER,NAME,OFFICE) values ('201403241','ABINUMAN, JOSEPHINE CALLO','Assistant AGrS Principal for Curriculum and Instruction','AGrS Principal's Office')

是我的 校长“办公室”

任何建议或索尔(Sol'n

Here is my postgresql query

select 'insert into employee(ID_NUMBER,NAME,OFFICE) values ('''||ID_NUMBER||''','''||NAME||''','''||replace(DESIGNATION,'&','and')||''','''||replace(DEPT_NAME,'&','and')||''')' as col 
from icare_employee_view 
where id_number='201403241' 
order by name;

output

insert into employee(ID_NUMBER,NAME,OFFICE) values ('201403241','ABINUMAN, JOSEPHINE CALLO','Assistant AGrS Principal for Curriculum and Instruction','AGrS Principal's Office')

but I need 'AGrS Principal's Office' to be 'AGrS Principal''s Office'

but I need 'AGrS Principal's Office' to be 'AGrS Principal''s Office'

any suggestions or sol'n is highly appreciated on how to fix my PostgreSQL query

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

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

发布评论

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

评论(1

浴红衣 2025-01-25 05:38:15

嗨,从 pgdocs

quote_literal(text)→文本

返回给定的字符串,适当地引用为字符串
在SQL语句字符串中文字。嵌入式单报价和
反斜线适当加倍。请注意,quote_literal返回null
在null输入上;如果参数可能为null,则Quote_nullable通常是
更合适。另请参见示例43.1。

QUOTE_LITERAL(E'O'REILLY')→'O''Reilly'

Hi check this from pgDocs:

quote_literal ( text ) → text

Returns the given string suitably quoted to be used as a string
literal in an SQL statement string. Embedded single-quotes and
backslashes are properly doubled. Note that quote_literal returns null
on null input; if the argument might be null, quote_nullable is often
more suitable. See also Example 43.1.

quote_literal(E'O'Reilly') → 'O''Reilly'

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