overwriteTable
Replace the targetTable with the sourceTable. This is typically something like
DROP TABLE IF EXISTS target;
ALTER TABLE source RENAME TO target;Content copied to clipboard
Replace the targetTable with the sourceTable. This is typically something like
DROP TABLE IF EXISTS target;
ALTER TABLE source RENAME TO target;