sql='delete a from sample a, TEMPLATE b where a.emailid=b.emailid '
df=psql.read_sql_query(sql,con=engine)
print df.head()
如何使用pandas删除公共行而不读取表或csv。kinldy请给我建议一个最好的方法….因为读表要花很多时间,所以我用了“pd.read\u sql\u table”
sql='delete a from sample a, TEMPLATE b where a.emailid=b.emailid '
df=psql.read_sql_query(sql,con=engine)
print df.head()
如何使用pandas删除公共行而不读取表或csv。kinldy请给我建议一个最好的方法….因为读表要花很多时间,所以我用了“pd.read\u sql\u table”
1条答案
按热度按时间9fkzdhlc1#
pandas正在引擎下使用sqlalchemy,只需使用引擎运行查询。