Which additional argument would you give to append the data of a DataFrame in an existing SQL table ?
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.
if_exists = 'append'
to_sql()