Bootstrap

python--查询PG数据库

1、连接到PostgreSQL数据库并查询数据

首先引用psycopg2模块:

import psycopg2

然后就可以通过如下方式连接到PostgreSQL数据库并执行查询数据的SQL语句:

# database,user,password,host,port分别对应要连接的PostgreSQL数据库的数据库名、数据库用户名、用户密码、主机、端口信息,请根据具体情况自行修改
conn = psycopg2.connect(database="test",user="postgres",password="postgres",host="127.0.0.1",port="5432")
curs = conn.cursor()
# 执行查询命令
curs.execute("SELECT name,setting FROM pg_settings")

如果想要批量查询:

"""
将要批量查询的数据存为list:['1','2','3',,,]
作为一个tuple(list_)传入:('1','2','3',,,,)
查询结果是一个tuple格式的list:[(id值,content值),(),(),,,,,]
"""
sql_command = "select html_content_id, html_origin_content from {} where html_content_id in {};".format(postgres_table1,tuple(uid_list))
curs.execute(sql_comman
;