So I am trying to insert a pandas DataFrame into the database. The database already has a table that contains most of the content of the DataFrame except for one column.
I attempted to use df.to_sql()
to insert the entire DataFrame but it takes a lot of time. Is there any function or library for just appending one column from the DataFrame to an existing database table?