背景 pandas:1.5.2 sqlalchemy:2.0.4 import pandas as pd from sqlalchemy import create_engine # SQLAlchemy v. 2.0! sql_engine = create_engine('postgresql://user:pass@host:5432/database') df = pd.read_sql(f''' SELECT * FROM table LIMIT 100''', sql_engine) 报错