在PostgreSQL中插入带有单引号的文本
我有张桌子test(id,name).
test(id,name)
我需要插入如下的值:user's log, 'my user', customer's.
user's log
'my user'
customer's
insert into test values (1,'user's log'); insert into test values (2,''my users''); insert into test values (3,'customer's');
如果我运行上述任何一条语句,我将得到一个错误。
如果有任何正确的方法,请分享。我不想要任何事先准备好的陈述。
是否可以使用SQL转义机制?
开满天机
繁花不似锦
相关分类