KnowledgeBoat Logo
|

Informatics Practices

Which additional argument would you give to append the data of a DataFrame in an existing SQL table ?

Python Pandas

1 Like

Answer

The if_exists = 'append' argument in the to_sql() function of pandas is used to append the data of a DataFrame into the existing SQL table.

Answered By

3 Likes


Related Questions