python鏈接postgresql數據庫

# 數據庫鏈接參數
conn = psycopg2.connect(database=database, user=user,password=password, host=host, port=port) cur = conn.cursor() cur.execute("SELECT * from user where sex=\"男\" ;") rows = cur.fetchall()        # all rows in table # 將查詢到的結果放入dataframe
df = pd.DataFrame(rows, columns=['ID','name','sex','phone'])
相關文章
相關標籤/搜索