如何在postgresql中的列内插入括号,方括号,冒号,双引号
How to insert paranthesis,brackets,colon,double quotes inside column in postgresql
我正在处理应用程序,我需要在列中存储 { [ " : ] }
这些字符。
我该怎么做?
None中需要特别注意的字符:
create table t (col text);
insert into t
values ('{ [ " : ] }');
但是,如果您打算在该列中存储(有效的)JSON 值,最好将其声明为 jsonb
而不是文本:
create table t (col jsonb);
insert into t
values ('{"key1": 42, "key2": [1,2,3]}');
SQL 中字符串文字中唯一需要特别注意的字符是单引号 - 它由 doubling it 转义,例如:'Arthur''s house'
我正在处理应用程序,我需要在列中存储 { [ " : ] }
这些字符。
我该怎么做?
None中需要特别注意的字符:
create table t (col text);
insert into t
values ('{ [ " : ] }');
但是,如果您打算在该列中存储(有效的)JSON 值,最好将其声明为 jsonb
而不是文本:
create table t (col jsonb);
insert into t
values ('{"key1": 42, "key2": [1,2,3]}');
SQL 中字符串文字中唯一需要特别注意的字符是单引号 - 它由 doubling it 转义,例如:'Arthur''s house'