postgresql中的字符串文字和转义字符

前端之家收集整理的这篇文章主要介绍了postgresql中的字符串文字和转义字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试在表中插入转义字符会导致警告。

例如:

create table EscapeTest (text varchar(50));

insert into EscapeTest (text) values ('This is the first part \n And this is the second');

产生警告:

WARNING:  nonstandard use of escape in a string literal

(使用Psql 8.2)

任何人都知道如何解决这个问题?

部分。文本已插入,但仍会生成警告。

我发现了一个讨论,指出文本需要在“E”之前,因此:

insert into EscapeTest (text) values (E'This is the first part \n And this is the second');

这抑制了警告,但文本仍未正确返回。当我添加额外的斜线作为迈克尔建议,它的工作。

因此:

insert into EscapeTest (text) values (E'This is the first part \\n And this is the second');
原文链接:https://www.f2er.com/postgresql/193843.html

猜你在找的Postgre SQL相关文章