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');

相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...