我使用teradasaql包作为python和teradata之间的连接器,从db加载数据。但是,我想将我在python中创建的Dataframe插入到db中。是否可以使用teradasql包将Dataframe写入数据库?谢谢
093gszye1#
sqlalchemy提供了Dataframe和sql数据库之间的链接。通常,您会使用pandasDataframe to_sql 方法将Dataframe的内容插入数据库中的表中:https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.dataframe.to_sql.html我们为python的teradata sql驱动程序提供sqlalchemy方言:https://pypi.org/project/teradatasqlalchemy/您可以通过以下方式安装: pip install teradatasqlalchemy
to_sql
pip install teradatasqlalchemy
1条答案
按热度按时间093gszye1#
sqlalchemy提供了Dataframe和sql数据库之间的链接。
通常,您会使用pandasDataframe
to_sql
方法将Dataframe的内容插入数据库中的表中:https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.dataframe.to_sql.html
我们为python的teradata sql驱动程序提供sqlalchemy方言:
https://pypi.org/project/teradatasqlalchemy/
您可以通过以下方式安装:
pip install teradatasqlalchemy