仅使用pandas to_sql()在SQLIte中插入新行

时间:2018-10-20 16:48:56

标签: python pandas sqlite

我在Pandas中有一个数据框,我想使用pandas函数to_sql()将数据框导出到sqlite,我遇到的问题是该函数仅允许remplace或追加值,而我不能仅导出通过插入新行。

to_sql()函数:

if_exists : {‘fail’, ‘replace’, ‘append’}, default ‘fail’

How to behave if the table already exists.

    fail: Raise a ValueError.
    replace: Drop the table before inserting new values.
    append: Insert new values to the existing table.

可以选择吗?

0 个答案:

没有答案