how remove unique entry from database code example
Example 1: how to remove unique key in mysql
ALTER TABLE mytable DROP INDEX key_Name;
Example 2: mysql delete duplicate rows
DELETE FROM table_name
WHERE
id IN (
SELECT
id
FROM (
SELECT
id,
ROW_NUMBER() OVER (
PARTITION BY field_1
ORDER BY field_1) AS row_num
FROM
table_name
) t
WHERE row_num > 1
);