1. 链接数据库 import psycopg2 conn = psycopg2.connect(user,host,port,database,password) cur = conn.cursor() 2. 如果不知道数据表中的字段名,则可以通过以下方式来获取表中的字段名 首先需要获取指针 cur.execute('select * from your_table') print(cur.description) #可以通过此方法在控制台中打印出表中所有的字段名和字段信息 3. 也可以查询…