I want to remove duplicate rows from BigQuery. The duplicate rows have the same data in all the columns. I know how to find the duplicates but I can't find a way to delete all rows but one. What I want to do is basically
DELETE FROM Table WHERE id = <id> LIMIT 1
But that doesn't work. I am not interested in rewriting the entire table
Is it possible to achieve this?