我有一个名为评论的字段。我正在有效地尝试将一个大表中的值读取到多个表中。因此,我的选择查询为我获取评论字段。
我正在构建一个 Python 脚本来执行从表到表的复制。由于单引号,我的插入查询在遇到诸如“对不起!我们无法处理您的订单”之类的评论字段时失败。
我曾尝试使用 $ 引号,但徒劳无功
这是我正在尝试的
#!/usr/bin/python
import psycopg2
conn = psycopg2.connect("dbname='postgres' user='postgres' host='localhost' )
mark=conn.cursor()
/* fectching the rows and doing other stuff */
addthis="insert into my_table(something) values("$$"+str(row[8])+"$$")
mark.execute(addthis)
conn.commit()
感谢帮助!