How to remove duplicate rows in MySQL with SQL

1 Answer

0 votes
-- column_name = where the duplicate value is

ALTER IGNORE TABLE table_name
ADD UNIQUE INDEX idx_name (column_name);

 



answered Jul 21, 2020 by avibootz
...