A data engineer is using an AWS Glue ETL job to remove outdated customer records from a table that contains customer account information. The data engineer is using the following SQL command to remove customers that exist in a table named monthly_accounts_update table from the customer accounts table:
MERGE INTO accounts t USING monthly_accounts_update s
ON t.customer = s.customer -
WHEN MATCHED -
THEN DELETE -
What will happen when the data engineer runs the SQL command?
XP_2600
1 month agoXP_2600
1 month, 2 weeks ago