Answers for "sql delete duplicate rows but keep one oracle"

SQL
0

how to delete duplicate rows in oracle

DELETE FROM your_table
WHERE rowid not in
(SELECT MIN(rowid)
FROM your_table
GROUP BY column1, column2, column3);
Posted by: Guest on December-04-2020
0

sql delete duplicate rows but keep one

# Step 1: Copy distinct values to temporary table
CREATE TEMPORARY TABLE tmp_user (
    SELECT id, name 
    FROM user
    GROUP BY name
);

# Step 2: Remove all rows from original table
DELETE FROM user;

# Step 3: Remove all rows from original table
INSERT INTO user (SELECT * FROM tmp_user);

# Step 4: Remove temporary table
DROP TABLE tmp_user;
Posted by: Guest on March-13-2020

Code answers related to "sql delete duplicate rows but keep one oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language