Library Call
1
2
3
4
import sqlalchemy
from sqlalchemy import create_engine
import pandas as pd
import psycopg2
SQL 결과를 DataFrame으로 불러오기
- {} 안에 비밀번호 입력
1
2
conn_string = 'postgresql://postgres:{Password}@localhost:5432/postgres'
postgres_engine = create_engine(conn_string)
"
을 활용해 쿼리를 작성해주어야 한다.
1
2
3
4
5
6
query = """
SELECT * FROM Database.table;
"""
df = pd.read_sql_query(sql=query, con=postgres_engine)
df.head()