我在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.
可以选择吗?