How can I delete duplicate rows from Azure Synapse Analytics? I'd like to delete one of the rows where audit_date = '2022-08-10' and city = 'LA'. I'd like to keep only 1 row. I've tried using the CTE method( Row_number()... ). Unfortunately, SQL Pool doesn't support Delete statements with CTE.
| audit_date | city | number_of_toys | number_of_balloons | number_of_drinks |
|---|---|---|---|---|
| 2022-08-10 | LA | 35 | 100 | 40 |
| 2022-08-10 | NY | 20 | 70 | 30 |
| 2022-08-10 | LA | 35 | 102 | 40 |


