I have a table with the following columns:
URL_ID
URL_ADDR
URL_Time
I want to remove duplicates on the URL_ADDR column
Well, you could always:
INSERT INTO ... SELECT DISTINCT into the temp table from original table;INSERT INTO ... SELECT into the original table from the temp tableIt's clumsy and awkward, and requires several queries (not to mention privileges), but it will do the trick if you don't find another solution.