You are currently working on reloading customer_sales tables using the below query INSERT OVERWRITE customer_sales SELECT * FROM customers c INNER JOIN sales_monthly s on s . customer_id = c . customer_id After you ran the above command, the Marketing team quickly wanted to review the old data that was in the table. How does INSERT OVERWRITE impact the data in the customer_sales table if you want to see the previous version of the data prior to running the above statement?