- New table
- Append
- Replace
- Merge
1. New table
New table is the default strategy. It will always create a new table.main.py
2. Append
Append strategy will append the data to the existing table. To append, you need to specify thetable_id
of the table you want to append to.
main.py
Table
object:
3. Replace
The replace strategy will replace the data in the existing table. To replace, you need to specify thetable_id
of the table you want to replace.
main.py
Table
-object:
4. Merge
The merge strategy will merge the data in the existing table. To merge, you need to specify thetable_id
of the table you want to merge.
You also need to specify the column to merge on. The merge strategy will merge the data on the specified column.
The merge-column must be a unique column in both tables.
main.py
Table
-object: